Click or drag to resize
IWorkflowStepUserInfoProviderGetAsync Method
Asynchronously gets an instance of the WorkflowStepUserInfo binding structure.

Namespace: CMS.WorkflowEngine
Assembly: CMS.WorkflowEngine (in CMS.WorkflowEngine.dll) Version: 13.0.131
Syntax
C#
Task<WorkflowStepUserInfo> GetAsync(
	int workflowStepId,
	int userId,
	Nullable<Guid> sourcePointGuid = null,
	Nullable<CancellationToken> cancellationToken = null
)

Parameters

workflowStepId
Type: SystemInt32
Workflow step ID.
userId
Type: SystemInt32
User ID.
sourcePointGuid (Optional)
Type: SystemNullableGuid
Source point GUID, or null.
cancellationToken (Optional)
Type: SystemNullableCancellationToken
The cancellation instruction.

Return Value

Type: TaskWorkflowStepUserInfo
Returns a task returning either an instance of WorkflowStepUserInfo corresponding to given identifiers or null.
See Also