ProfileUpdatedEventArgs 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 ProfileUpdatedEventArgs class.
Overloads
ProfileUpdatedEventArgs() |
Initializes a new instance of the ProfileUpdatedEventArgs class. |
ProfileUpdatedEventArgs(Type, TrackingProfile) |
Initializes a new instance of the ProfileUpdatedEventArgs class that specifies a new TrackingProfile for the specified workflow Type. |
ProfileUpdatedEventArgs()
Initializes a new instance of the ProfileUpdatedEventArgs class.
public:
ProfileUpdatedEventArgs();
public ProfileUpdatedEventArgs ();
Public Sub New ()
Remarks
If you use this constructor when you raise a ProfileUpdated event inside a tracking service, you must explicitly set WorkflowType and TrackingProfile.
Applies to
ProfileUpdatedEventArgs(Type, TrackingProfile)
Initializes a new instance of the ProfileUpdatedEventArgs class that specifies a new TrackingProfile for the specified workflow Type.
public:
ProfileUpdatedEventArgs(Type ^ workflowType, System::Workflow::Runtime::Tracking::TrackingProfile ^ profile);
public ProfileUpdatedEventArgs (Type workflowType, System.Workflow.Runtime.Tracking.TrackingProfile profile);
new System.Workflow.Runtime.Tracking.ProfileUpdatedEventArgs : Type * System.Workflow.Runtime.Tracking.TrackingProfile -> System.Workflow.Runtime.Tracking.ProfileUpdatedEventArgs
Public Sub New (workflowType As Type, profile As TrackingProfile)
Parameters
- workflowType
- Type
The Type of workflow for which the TrackingProfile has changed.
- profile
- TrackingProfile
The new TrackingProfile.
Remarks
A new instance of ProfileUpdatedEventArgs is created with WorkflowType set to the specified Type and TrackingProfile set to the specified profile.