WorkflowInstanceUpdatedRecord Constructors

Definition

Initializes a new instance of the WorkflowInstanceUpdatedRecord class.

Overloads

WorkflowInstanceUpdatedRecord(Guid, String, WorkflowIdentity, WorkflowIdentity)

Initializes a new instance of the WorkflowInstanceUpdatedRecord class.

WorkflowInstanceUpdatedRecord(Guid, Int64, String, WorkflowIdentity, WorkflowIdentity)

Initializes a new instance of the WorkflowInstanceUpdatedRecord class.

WorkflowInstanceUpdatedRecord(Guid, String, WorkflowIdentity, WorkflowIdentity, IList<ActivityBlockingUpdate>)

Initializes a new instance of the WorkflowInstanceUpdatedRecord class.

WorkflowInstanceUpdatedRecord(Guid, Int64, String, WorkflowIdentity, WorkflowIdentity, IList<ActivityBlockingUpdate>)

Initializes a new instance of the WorkflowInstanceUpdatedRecord class.

WorkflowInstanceUpdatedRecord(Guid, String, WorkflowIdentity, WorkflowIdentity)

Initializes a new instance of the WorkflowInstanceUpdatedRecord class.

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

Parameters

instanceId
Guid

The instance identification of the generating workflow.

activityDefinitionId
String

The display name of the root activity of the workflow.

originalDefinitionIdentity
WorkflowIdentity

The original definition identity of the workflow.

updatedDefinitionIdentity
WorkflowIdentity

The updated definition identity of the workflow.

Applies to

WorkflowInstanceUpdatedRecord(Guid, Int64, String, WorkflowIdentity, WorkflowIdentity)

Initializes a new instance of the WorkflowInstanceUpdatedRecord class.

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

Parameters

instanceId
Guid

The instance identification of the generating workflow.

recordNumber
Int64

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

activityDefinitionId
String

The display name of the root activity of the workflow.

originalDefinitionIdentity
WorkflowIdentity

The original definition identity of the workflow.

updatedDefinitionIdentity
WorkflowIdentity

The updated definition identity of the workflow.

Applies to

WorkflowInstanceUpdatedRecord(Guid, String, WorkflowIdentity, WorkflowIdentity, IList<ActivityBlockingUpdate>)

Initializes a new instance of the WorkflowInstanceUpdatedRecord class.

public:
 WorkflowInstanceUpdatedRecord(Guid instanceId, System::String ^ activityDefinitionId, System::Activities::WorkflowIdentity ^ originalDefinitionIdentity, System::Activities::WorkflowIdentity ^ updatedDefinitionIdentity, System::Collections::Generic::IList<System::Activities::DynamicUpdate::ActivityBlockingUpdate ^> ^ blockingActivities);
public WorkflowInstanceUpdatedRecord (Guid instanceId, string activityDefinitionId, System.Activities.WorkflowIdentity originalDefinitionIdentity, System.Activities.WorkflowIdentity updatedDefinitionIdentity, System.Collections.Generic.IList<System.Activities.DynamicUpdate.ActivityBlockingUpdate> blockingActivities);
new System.Activities.Tracking.WorkflowInstanceUpdatedRecord : Guid * string * System.Activities.WorkflowIdentity * System.Activities.WorkflowIdentity * System.Collections.Generic.IList<System.Activities.DynamicUpdate.ActivityBlockingUpdate> -> System.Activities.Tracking.WorkflowInstanceUpdatedRecord
Public Sub New (instanceId As Guid, activityDefinitionId As String, originalDefinitionIdentity As WorkflowIdentity, updatedDefinitionIdentity As WorkflowIdentity, blockingActivities As IList(Of ActivityBlockingUpdate))

Parameters

instanceId
Guid

The instance identification of the generating workflow.

activityDefinitionId
String

The display name of the root activity of the workflow.

originalDefinitionIdentity
WorkflowIdentity

The original definition identity of the workflow.

updatedDefinitionIdentity
WorkflowIdentity

The updated definition identity of the workflow.

blockingActivities
IList<ActivityBlockingUpdate>

The blocking activities of the workflow.

Applies to

WorkflowInstanceUpdatedRecord(Guid, Int64, String, WorkflowIdentity, WorkflowIdentity, IList<ActivityBlockingUpdate>)

Initializes a new instance of the WorkflowInstanceUpdatedRecord class.

public:
 WorkflowInstanceUpdatedRecord(Guid instanceId, long recordNumber, System::String ^ activityDefinitionId, System::Activities::WorkflowIdentity ^ originalDefinitionIdentity, System::Activities::WorkflowIdentity ^ updatedDefinitionIdentity, System::Collections::Generic::IList<System::Activities::DynamicUpdate::ActivityBlockingUpdate ^> ^ blockingActivities);
public WorkflowInstanceUpdatedRecord (Guid instanceId, long recordNumber, string activityDefinitionId, System.Activities.WorkflowIdentity originalDefinitionIdentity, System.Activities.WorkflowIdentity updatedDefinitionIdentity, System.Collections.Generic.IList<System.Activities.DynamicUpdate.ActivityBlockingUpdate> blockingActivities);
new System.Activities.Tracking.WorkflowInstanceUpdatedRecord : Guid * int64 * string * System.Activities.WorkflowIdentity * System.Activities.WorkflowIdentity * System.Collections.Generic.IList<System.Activities.DynamicUpdate.ActivityBlockingUpdate> -> System.Activities.Tracking.WorkflowInstanceUpdatedRecord
Public Sub New (instanceId As Guid, recordNumber As Long, activityDefinitionId As String, originalDefinitionIdentity As WorkflowIdentity, updatedDefinitionIdentity As WorkflowIdentity, blockingActivities As IList(Of ActivityBlockingUpdate))

Parameters

instanceId
Guid

The instance identification of the generating workflow.

recordNumber
Int64

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

activityDefinitionId
String

The display name of the root activity of the workflow.

originalDefinitionIdentity
WorkflowIdentity

The original definition identity of the workflow.

updatedDefinitionIdentity
WorkflowIdentity

The updated definition identity of the workflow.

blockingActivities
IList<ActivityBlockingUpdate>

The blocking activities of the workflow.

Applies to