Gets all events of the given type that start after today, 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[] GetAllFutureEventsByType(
	IiMISUser user,
	string eventType
)
Visual Basic
Public Shared Function GetAllFutureEventsByType ( _
	user As IiMISUser, _
	eventType As String _
) As CEvent()
Visual C++
public:
static array<CEvent^>^ GetAllFutureEventsByType(
	IiMISUser^ user, 
	String^ eventType
)

Parameters

user
Type: Asi.iBO..::..IiMISUser
The IiMISUser object providing the security credentials of the logged in user.
eventType
Type: System..::..String
The desired event type on which to search.

Return Value

An array of CEvent objects.

See Also