Editar

Share via


WorkflowDataTrackingExtract Constructors

Definition

Initializes a new instance of the WorkflowDataTrackingExtract class.

Overloads

WorkflowDataTrackingExtract()

Initializes a new instance of the WorkflowDataTrackingExtract class.

WorkflowDataTrackingExtract(String)

Initializes a new instance of the WorkflowDataTrackingExtract class by using the specified name of a member of the root activity.

WorkflowDataTrackingExtract()

Initializes a new instance of the WorkflowDataTrackingExtract class.

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

Remarks

If you use the parameterless constructor you must explicitly set Member to a value different from a null reference (Nothing in Visual Basic) in your code.

Applies to

WorkflowDataTrackingExtract(String)

Initializes a new instance of the WorkflowDataTrackingExtract class by using the specified name of a member of the root activity.

public:
 WorkflowDataTrackingExtract(System::String ^ member);
public WorkflowDataTrackingExtract (string member);
new System.Workflow.Runtime.Tracking.WorkflowDataTrackingExtract : string -> System.Workflow.Runtime.Tracking.WorkflowDataTrackingExtract
Public Sub New (member As String)

Parameters

member
String

The dot delineated name of the field or property of the root activity that should be extracted and sent to the tracking service.

Exceptions

member is a null reference (Nothing in Visual Basic).

Remarks

WorkflowDataTrackingExtract.Member is initialized to the string specified by member.

Applies to