ProfileRemovedEventArgs Constructors

Definition

Initializes a new instance of the ProfileRemovedEventArgs class.

Overloads

ProfileRemovedEventArgs()

Initializes a new instance of the ProfileRemovedEventArgs class.

ProfileRemovedEventArgs(Type)

Initializes a new instance of the ProfileRemovedEventArgs class that applies to the specified workflow Type.

ProfileRemovedEventArgs()

Initializes a new instance of the ProfileRemovedEventArgs class.

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

Remarks

If you use this constructor when you raise a ProfileRemoved event inside a tracking service, you must explicitly set WorkflowType.

Applies to

ProfileRemovedEventArgs(Type)

Initializes a new instance of the ProfileRemovedEventArgs class that applies to the specified workflow Type.

public:
 ProfileRemovedEventArgs(Type ^ workflowType);
public ProfileRemovedEventArgs (Type workflowType);
new System.Workflow.Runtime.Tracking.ProfileRemovedEventArgs : Type -> System.Workflow.Runtime.Tracking.ProfileRemovedEventArgs
Public Sub New (workflowType As Type)

Parameters

workflowType
Type

The workflow Type for which the TrackingProfile should be removed.

Remarks

A new instance of ProfileRemovedEventArgs is created with WorkflowType set to the specified Type.

Applies to