WorkflowInstanceTerminatedRecord Constructors

Definition

Creates a new instance of the WorkflowInstanceTerminatedRecord class.

Overloads

WorkflowInstanceTerminatedRecord(Guid, String, String)

Creates a new instance of the WorkflowInstanceTerminatedRecord class.

WorkflowInstanceTerminatedRecord(Guid, Int64, String, String)

Creates a new instance of the WorkflowInstanceTerminatedRecord class.

WorkflowInstanceTerminatedRecord(Guid, String, String, WorkflowIdentity)

Creates a new instance of the WorkflowInstanceTerminatedRecord class.

WorkflowInstanceTerminatedRecord(Guid, Int64, String, String, WorkflowIdentity)

Creates a new instance of the WorkflowInstanceTerminatedRecord class.

WorkflowInstanceTerminatedRecord(Guid, String, String)

Creates a new instance of the WorkflowInstanceTerminatedRecord class.

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

Parameters

instanceId
Guid

The instance ID of the terminated workflow.

activityDefinitionId
String

The ID of the activity definition.

reason
String

The reason the workflow was terminated.

Applies to

WorkflowInstanceTerminatedRecord(Guid, Int64, String, String)

Creates a new instance of the WorkflowInstanceTerminatedRecord class.

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

Parameters

instanceId
Guid

The instance ID of the terminated 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 terminated.

Applies to

WorkflowInstanceTerminatedRecord(Guid, String, String, WorkflowIdentity)

Creates a new instance of the WorkflowInstanceTerminatedRecord class.

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

Parameters

instanceId
Guid

The instance ID of the terminated workflow.

activityDefinitionId
String

The display name of the root activity of the workflow.

reason
String

The reason the workflow was terminated.

workflowDefinitionIdentity
WorkflowIdentity

The information about the workflow identity.

Applies to

WorkflowInstanceTerminatedRecord(Guid, Int64, String, String, WorkflowIdentity)

Creates a new instance of the WorkflowInstanceTerminatedRecord class.

public:
 WorkflowInstanceTerminatedRecord(Guid instanceId, long recordNumber, System::String ^ activityDefinitionId, System::String ^ reason, System::Activities::WorkflowIdentity ^ workflowDefinitionIdentity);
public WorkflowInstanceTerminatedRecord (Guid instanceId, long recordNumber, string activityDefinitionId, string reason, System.Activities.WorkflowIdentity workflowDefinitionIdentity);
new System.Activities.Tracking.WorkflowInstanceTerminatedRecord : Guid * int64 * string * string * System.Activities.WorkflowIdentity -> System.Activities.Tracking.WorkflowInstanceTerminatedRecord
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 terminated 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 terminated.

workflowDefinitionIdentity
WorkflowIdentity

The information about the workflow identity.

Applies to