Modifica

Condividi tramite


ActivityTrackingRecord Constructors

Definition

Initializes a new instance of the ActivityTrackingRecord class.

Overloads

ActivityTrackingRecord()

Initializes a new instance of the ActivityTrackingRecord class.

ActivityTrackingRecord(Type, String, Guid, Guid, ActivityExecutionStatus, DateTime, Int32, EventArgs)

Initializes a new instance of the ActivityTrackingRecord class by using the specified parameters.

Remarks

The constructor is called by the runtime tracking infrastructure.

ActivityTrackingRecord()

Initializes a new instance of the ActivityTrackingRecord class.

public:
 ActivityTrackingRecord();
public ActivityTrackingRecord ();
Public Sub New ()

Remarks

This constructor is called by the runtime tracking infrastructure.

Applies to

ActivityTrackingRecord(Type, String, Guid, Guid, ActivityExecutionStatus, DateTime, Int32, EventArgs)

Initializes a new instance of the ActivityTrackingRecord class by using the specified parameters.

public:
 ActivityTrackingRecord(Type ^ activityType, System::String ^ qualifiedName, Guid contextGuid, Guid parentContextGuid, System::Workflow::ComponentModel::ActivityExecutionStatus executionStatus, DateTime eventDateTime, int eventOrder, EventArgs ^ eventArgs);
public ActivityTrackingRecord (Type activityType, string qualifiedName, Guid contextGuid, Guid parentContextGuid, System.Workflow.ComponentModel.ActivityExecutionStatus executionStatus, DateTime eventDateTime, int eventOrder, EventArgs eventArgs);
new System.Workflow.Runtime.Tracking.ActivityTrackingRecord : Type * string * Guid * Guid * System.Workflow.ComponentModel.ActivityExecutionStatus * DateTime * int * EventArgs -> System.Workflow.Runtime.Tracking.ActivityTrackingRecord
Public Sub New (activityType As Type, qualifiedName As String, contextGuid As Guid, parentContextGuid As Guid, executionStatus As ActivityExecutionStatus, eventDateTime As DateTime, eventOrder As Integer, eventArgs As EventArgs)

Parameters

activityType
Type

The Type of the activity associated with the activity status event.

qualifiedName
String

The QualifiedName of the activity associated with the activity status event.

contextGuid
Guid

The Guid that identifies the ActivityExecutionContext of the activity associated with the activity status event.

parentContextGuid
Guid

The Guid that identifies the ActivityExecutionContext of the parent activity of the activity associated with the activity status event.

executionStatus
ActivityExecutionStatus

One of the ActivityExecutionStatus values.

eventDateTime
DateTime

A DateTime that indicates the date and time of the activity status event associated with the tracking record.

eventOrder
Int32

The relative order in which the activity status event associated with this tracking record occurred in the workflow instance.

eventArgs
EventArgs

A null reference (Nothing in Visual Basic). This field is not set for an ActivityTrackingRecord.

Applies to