ProfileRemovedEventArgs Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.