WorkflowManager.RaiseTaskCompletedEventV2 Method

Completes specified task.

Definition

Namespace: FileHold.LibraryManager
Assembly: FileHold.LibraryManager (in FileHold.LibraryManager.dll) Version: 17.1.0.0
C#
[WebMethodAttribute(Description = "Completes specified task.")]
public void RaiseTaskCompletedEventV2(
	Guid workflowInstanceGuid,
	Guid taskGuid,
	TaskApprovalStatus taskApprovalStatus,
	string comment,
	Guid attachmentUploadToken,
	string attachmentFileName,
	string password,
	int? restartActivity,
	OneTimeActivity oneTimeActivity
)

Parameters

workflowInstanceGuid  Guid
ID of the workflow associated with the task
taskGuid  Guid
ID of the task to complete
taskApprovalStatus  TaskApprovalStatus
The approval status if the task is an Approval task
comment  String
Optional comment for review or approval
attachmentUploadToken  Guid
Optional upload token for a review or approval feedback document
attachmentFileName  String
Name of the approval feedback document
password  String
User's password, by default only required for approval
restartActivity  Nullable<Int32>
When postponing approval, this can be set to the index of activity from which the workflow will be restarted
oneTimeActivity  OneTimeActivity
When postponing approval, this can include the details of the one-time review activity that will be created

See Also