WorkflowInstanceSuspendedRecord Constructors

Definition

Creates a new instance of the WorkflowInstanceSuspendedRecord class.

Overloads

WorkflowInstanceSuspendedRecord(Guid, String, String)

Creates a new instance of the WorkflowInstanceSuspendedRecord class.

WorkflowInstanceSuspendedRecord(Guid, Int64, String, String)

Creates a new instance of the WorkflowInstanceSuspendedRecord class.

WorkflowInstanceSuspendedRecord(Guid, String, String, WorkflowIdentity)

Creates a new instance of the WorkflowInstanceSuspendedRecord class.

WorkflowInstanceSuspendedRecord(Guid, Int64, String, String, WorkflowIdentity)

Creates a new instance of the WorkflowInstanceSuspendedRecord class.

WorkflowInstanceSuspendedRecord(Guid, String, String)

Creates a new instance of the WorkflowInstanceSuspendedRecord class.

public:
 WorkflowInstanceSuspendedRecord(Guid instanceId, System::String ^ activityDefinitionId, System::String ^ reason);
public WorkflowInstanceSuspendedRecord (Guid instanceId, string activityDefinitionId, string reason);
new System.Activities.Tracking.WorkflowInstanceSuspendedRecord : Guid * string * string -> System.Activities.Tracking.WorkflowInstanceSuspendedRecord
Public Sub New (instanceId As Guid, activityDefinitionId As String, reason As String)

Parameters

instanceId
Guid

The instance ID of the suspended workflow.

activityDefinitionId
String

The display name of the root activity of the workflow.

reason
String

The reason the workflow was suspended.

Applies to

WorkflowInstanceSuspendedRecord(Guid, Int64, String, String)

Creates a new instance of the WorkflowInstanceSuspendedRecord class.

public:
 WorkflowInstanceSuspendedRecord(Guid instanceId, long recordNumber, System::String ^ activityDefinitionId, System::String ^ reason);
public WorkflowInstanceSuspendedRecord (Guid instanceId, long recordNumber, string activityDefinitionId, string reason);
new System.Activities.Tracking.WorkflowInstanceSuspendedRecord : Guid * int64 * string * string -> System.Activities.Tracking.WorkflowInstanceSuspendedRecord
Public Sub New (instanceId As Guid, recordNumber As Long, activityDefinitionId As String, reason As String)

Parameters

instanceId
Guid

The instance ID of the suspended workflow.

recordNumber
Int64

A sequence that defines the order in which tracking records are generated.

activityDefinitionId
String

The display name of the root activity of the workflow.

reason
String

The reason the workflow was suspended.

Applies to

WorkflowInstanceSuspendedRecord(Guid, String, String, WorkflowIdentity)

Creates a new instance of the WorkflowInstanceSuspendedRecord class.

public:
 WorkflowInstanceSuspendedRecord(Guid instanceId, System::String ^ activityDefinitionId, System::String ^ reason, System::Activities::WorkflowIdentity ^ workflowDefinitionIdentity);
public WorkflowInstanceSuspendedRecord (Guid instanceId, string activityDefinitionId, string reason, System.Activities.WorkflowIdentity workflowDefinitionIdentity);
new System.Activities.Tracking.WorkflowInstanceSuspendedRecord : Guid * string * string * System.Activities.WorkflowIdentity -> System.Activities.Tracking.WorkflowInstanceSuspendedRecord
Public Sub New (instanceId As Guid, activityDefinitionId As String, reason As String, workflowDefinitionIdentity As WorkflowIdentity)

Parameters

instanceId
Guid

The instance ID of the suspended workflow.

activityDefinitionId
String

The display name of the root activity of the workflow.

reason
String

The reason the workflow was suspended.

workflowDefinitionIdentity
WorkflowIdentity

The information about the workflow identity.

Applies to

WorkflowInstanceSuspendedRecord(Guid, Int64, String, String, WorkflowIdentity)

Creates a new instance of the WorkflowInstanceSuspendedRecord class.

public:
 WorkflowInstanceSuspendedRecord(Guid instanceId, long recordNumber, System::String ^ activityDefinitionId, System::String ^ reason, System::Activities::WorkflowIdentity ^ workflowDefinitionIdentity);
public WorkflowInstanceSuspendedRecord (Guid instanceId, long recordNumber, string activityDefinitionId, string reason, System.Activities.WorkflowIdentity workflowDefinitionIdentity);
new System.Activities.Tracking.WorkflowInstanceSuspendedRecord : Guid * int64 * string * string * System.Activities.WorkflowIdentity -> System.Activities.Tracking.WorkflowInstanceSuspendedRecord
Public Sub New (instanceId As Guid, recordNumber As Long, activityDefinitionId As String, reason As String, workflowDefinitionIdentity As WorkflowIdentity)

Parameters

instanceId
Guid

The instance ID of the suspended workflow.

recordNumber
Int64

A sequence that defines the order in which tracking records are generated.

activityDefinitionId
String

The display name of the root activity of the workflow.

reason
String

The reason the workflow was suspended.

workflowDefinitionIdentity
WorkflowIdentity

The information about the workflow identity.

Applies to