Gets all events that start within the date range specified, ordered by the event start date.

Namespace: Asi.iBO.Events
Assembly: Asi.iBO (in Asi.iBO.dll) Version: 15.1.3.0

Syntax

C#
public static CEvent[] GetAllEventsInRange(
	IiMISUser user,
	DateTime startDate,
	DateTime endDate
)
Visual Basic
Public Shared Function GetAllEventsInRange ( _
	user As IiMISUser, _
	startDate As DateTime, _
	endDate As DateTime _
) As CEvent()
Visual C++
public:
static array<CEvent^>^ GetAllEventsInRange(
	IiMISUser^ user, 
	DateTime startDate, 
	DateTime endDate
)

Parameters

user
Type: Asi.iBO..::..IiMISUser
The IiMISUser object providing the security credentials of the logged in user.
startDate
Type: System..::..DateTime
The beginning date of the desired range.
endDate
Type: System..::..DateTime
The ending date of the desired range.

Return Value

An array of CEvent objects.

See Also