ServicePRO SDK Help

RequestServicesManager..::..GetRequestTransactions Method

Gets the request transactions.

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

Syntax


public void GetRequestTransactions(
	string userSessionKey,
	int requestId,
	int selectedMemoId,
	bool publicMemoOnly,
	string excludedAuthors,
	string excludeTransactionTypes,
	int startRow,
	int endRow,
	clsEnumeration..::..hsSortDirection sortDirection,
	string whereClause,
	Action<int, int, ObservableCollection<Dictionary<string, Object>>, ObservableCollection<Dictionary<string, Object>>, ObservableCollection<Dictionary<string, Object>>, int, Exception> callbackAction
)
Public Sub GetRequestTransactions ( _
	userSessionKey As String, _
	requestId As Integer, _
	selectedMemoId As Integer, _
	publicMemoOnly As Boolean, _
	excludedAuthors As String, _
	excludeTransactionTypes As String, _
	startRow As Integer, _
	endRow As Integer, _
	sortDirection As clsEnumeration..::..hsSortDirection, _
	whereClause As String, _
	callbackAction As Action(Of Integer, Integer, ObservableCollection(Of Dictionary(Of String, Object)), ObservableCollection(Of Dictionary(Of String, Object)), ObservableCollection(Of Dictionary(Of String, Object)), Integer, 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.
requestId
Type: Int32
The request identifier.
selectedMemoId
Type: Int32
The selected memo identifier.
publicMemoOnly
Type: Boolean
set to true if only retrieve public memo.
excludedAuthors
Type: String
The excluded authors.(Comma-separated string)
excludeTransactionTypes
Type: String
The exclude transaction types.(Comma-separated string)
startRow
Type: Int32
The number of starting row.
endRow
Type: Int32
The number of ending row.
sortDirection
Type: HelpSTAR.PCL.Common..::..clsEnumeration..::..hsSortDirection
The option for sort direction.
whereClause
Type: String
The where clause in query string.
callbackAction
Type: Action<(Of <(<'Int32, Int32, ObservableCollection<(Of <(<'Dictionary<(Of <(<'String, Object>)>)>>)>)>, ObservableCollection<(Of <(<'Dictionary<(Of <(<'String, Object>)>)>>)>)>, ObservableCollection<(Of <(<'Dictionary<(Of <(<'String, Object>)>)>>)>)>, Int32, Exception>)>)>
The callback action.(contains result collections if success.)