Gets all events of the given type that start within the date range specified and have the supplied type, ordered by the event start date

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

Syntax

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

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.
eventType
Type: System..::.String
The type of event on which to search.

Return Value

An array of CEvent objects.

See Also