UserTrackingRecord Constructors

Definition

Initializes a new instance of the UserTrackingRecord class.

Overloads

UserTrackingRecord()

Initializes a new instance of the UserTrackingRecord class.

UserTrackingRecord(Type, String, Guid, Guid, DateTime, Int32, String, Object)

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

Remarks

The constructor is called by the runtime tracking infrastructure.

UserTrackingRecord()

Initializes a new instance of the UserTrackingRecord class.

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

Remarks

This constructor is called by the runtime tracking infrastructure.

Applies to

UserTrackingRecord(Type, String, Guid, Guid, DateTime, Int32, String, Object)

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

public:
 UserTrackingRecord(Type ^ activityType, System::String ^ qualifiedName, Guid contextGuid, Guid parentContextGuid, DateTime eventDateTime, int eventOrder, System::String ^ userDataKey, System::Object ^ userData);
public UserTrackingRecord (Type activityType, string qualifiedName, Guid contextGuid, Guid parentContextGuid, DateTime eventDateTime, int eventOrder, string userDataKey, object userData);
new System.Workflow.Runtime.Tracking.UserTrackingRecord : Type * string * Guid * Guid * DateTime * int * string * obj -> System.Workflow.Runtime.Tracking.UserTrackingRecord
Public Sub New (activityType As Type, qualifiedName As String, contextGuid As Guid, parentContextGuid As Guid, eventDateTime As DateTime, eventOrder As Integer, userDataKey As String, userData As Object)

Parameters

activityType
Type

The Type of the activity associated with the user event.

qualifiedName
String

The QualifiedName of the activity associated with the user event.

contextGuid
Guid

A number that identifies the ActivityExecutionContext of the activity associated with the user event.

parentContextGuid
Guid

A number that identifies the ActivityExecutionContext of the parent activity of the activity associated with the user event.

eventDateTime
DateTime

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

eventOrder
Int32

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

userDataKey
String

A key associated with the user data for this tracking record, or a null reference (Nothing in Visual Basic).

userData
Object

The user data associated with the user event.

Applies to