ServicePRO SDK Help

ManageObjectsServicesManager..::..GetRequestInQueue Method

Gets the collection of request in this queue.

Namespace:  ServicePRO.Sdk.Windows.Managers
Assembly:  ServicePRO.Sdk.Windows (in ServicePRO.Sdk.Windows.dll)

Syntax


public void GetRequestInQueue(
	string sessionKey,
	int iQueueId,
	string WhereClause,
	string orderByClause,
	int StartRow,
	int EndRow,
	Action<int, ObservableCollection<Dictionary<string, Object>>, Exception> callbackAction
)
Public Sub GetRequestInQueue ( _
	sessionKey As String, _
	iQueueId As Integer, _
	WhereClause As String, _
	orderByClause As String, _
	StartRow As Integer, _
	EndRow As Integer, _
	callbackAction As Action(Of Integer, ObservableCollection(Of Dictionary(Of String, Object)), Exception) _
)

Parameters

sessionKey
Type: String
User’s Session Key.
Key property of the User Session Object of type stcSession.
The User Session has to be established by making a call to InitializeSystemAndSession() method in CoreServicesManager class as a first step with using ServicePRO SDK.
iQueueId
Type: Int32
The queue identifier.
WhereClause
Type: String
The "where" query clause.
orderByClause
Type: String
The "order by" query clause.
StartRow
Type: Int32
The start row.
EndRow
Type: Int32
The end row.
callbackAction
Type: Action<(Of <(<'Int32, ObservableCollection<(Of <(<'Dictionary<(Of <(<'String, Object>)>)>>)>)>, Exception>)>)>
The callback action.