Class SetApproversEventArgs

Arguments used with SetApproversEvent activity

Inheritance
System.Object
SetApproversEventArgs
Namespace: EPiServer.WorkflowFoundation.Workflows
Assembly: EPiServer.WorkflowFoundation.dll
Version: 8.11.0
Syntax
public class SetApproversEventArgs : ExternalDataEventArgs

Constructors

SetApproversEventArgs(String, List<ApproverItem>, Int32, PageReference, Guid)

Initializes a new instance of the SetApproversEventArgs class.

Declaration
public SetApproversEventArgs(string taskDescription, List<ApproverItem> approvers, int neededApprovments, PageReference pageLink, Guid workflowInstanceId)
Parameters
Type Name Description
System.String taskDescription

The task description.

System.Collections.Generic.List<ApproverItem> approvers

The approvers.

System.Int32 neededApprovments

The needed approvments.

PageReference pageLink

The page version that is to be approved

System.Guid workflowInstanceId

The workflow instance id.

Properties

Approvers

Gets the approvers.

Declaration
public List<ApproverItem> Approvers { get; }
Property Value
Type Description
System.Collections.Generic.List<ApproverItem>

The approvers.

NeededApprovments

Gets the minimum number of needed approvments.

Declaration
public int NeededApprovments { get; }
Property Value
Type Description
System.Int32

The needed approvments.

Remarks

Only meaningful in parallel approval workflow

Gets the page link for the page version to approve

Declaration
public PageReference PageLink { get; }
Property Value
Type Description
PageReference

The page link.

TaskDescription

Gets the task description.

Declaration
public string TaskDescription { get; }
Property Value
Type Description
System.String

The task description.