ServicePRO SDK Help

RequestServicesManager..::..ProcessNewChildRequest Method

Create child request data frame for given parent request.

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

Syntax


public void ProcessNewChildRequest(
	string userSessionKey,
	int parentId,
	int parentRequestId,
	bool isFolder,
	Action<stcRequest, stcPrivilegeRequest, Exception> callbackAction
)
Public Sub ProcessNewChildRequest ( _
	userSessionKey As String, _
	parentId As Integer, _
	parentRequestId As Integer, _
	isFolder As Boolean, _
	callbackAction As Action(Of stcRequest, stcPrivilegeRequest, 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.
parentId
Type: Int32
The parent identifier.
parentRequestId
Type: Int32
The parent request identifier.
isFolder
Type: Boolean
set to true if current parent is folder.(obsolete)
callbackAction
Type: Action<(Of <(<'stcRequest, stcPrivilegeRequest, Exception>)>)>
The callback action.