ServicePRO SDK Help

RequestServicesManager..::..ContactHistoryList Method

Get the contact history information.

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

Syntax


public void ContactHistoryList(
	string userSessionKey,
	int Listtype,
	stcDataRange dateRange,
	int UserId,
	int startRow,
	int endRow,
	string whereClause,
	string orderbyClause,
	Action<int, ObservableCollection<Dictionary<string, Object>>, stcQueryField[], Exception> callbackAction
)
Public Sub ContactHistoryList ( _
	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, ObservableCollection(Of Dictionary(Of String, Object)), stcQueryField(), 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, ObservableCollection<(Of <(<'Dictionary<(Of <(<'String, Object>)>)>>)>)>, array<stcQueryField>[]()[][], Exception>)>)>
The callback action.