ServicePRO SDK Help

RequestServicesManager..::..RequesterHistoryList Method

Get the requester's history information.

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

Syntax


public void RequesterHistoryList(
	string userSessionKey,
	int Listtype,
	stcDataRange dateRange,
	int UserId,
	int startRow,
	int endRow,
	string whereClause,
	string orderbyClause,
	Action<int, stcQueryField[], ObservableCollection<Dictionary<string, Object>>, Exception> callbackAction
)
Public Sub RequesterHistoryList ( _
	userSessionKey As String, _
	Listtype As Integer, _
	dateRange As stcDataRange, _
	UserId As Integer, _
	startRow As Integer, _
	endRow As Integer, _
	whereClause As String, _
	orderbyClause As String, _
	callbackAction As Action(Of Integer, stcQueryField(), ObservableCollection(Of Dictionary(Of String, Object)), Exception) _
)

Parameters

userSessionKey
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.
Listtype
Type: Int32
The list type.
dateRange
Type: HelpSTAR.PCL.Common..::..stcDataRange
The date range.
UserId
Type: Int32
The user identifier.
startRow
Type: Int32
The number of starting row.
endRow
Type: Int32
The number of ending row.
whereClause
Type: String
The where clause in query string.
orderbyClause
Type: String
The "order by" clause in query string.
callbackAction
Type: Action<(Of <(<'Int32, array<stcQueryField>[]()[][], ObservableCollection<(Of <(<'Dictionary<(Of <(<'String, Object>)>)>>)>)>, Exception>)>)>
The callback action.