SqlTrackingService.ProfileUpdated Event

Definition

Occurs when the SqlTrackingService detects that a TrackingProfile has been changed.

public:
 virtual event EventHandler<System::Workflow::Runtime::Tracking::ProfileUpdatedEventArgs ^> ^ ProfileUpdated;
public event EventHandler<System.Workflow.Runtime.Tracking.ProfileUpdatedEventArgs> ProfileUpdated;
member this.ProfileUpdated : EventHandler<System.Workflow.Runtime.Tracking.ProfileUpdatedEventArgs> 
Public Custom Event ProfileUpdated As EventHandler(Of ProfileUpdatedEventArgs) 
Public Event ProfileUpdated As EventHandler(Of ProfileUpdatedEventArgs) 

Event Type

EventHandler<ProfileUpdatedEventArgs>

Implements

Remarks

The SqlTrackingService periodically examines its database to determine whether one or more of its tracking profiles have been changed. If it detects such a change in a TrackingProfile, it raises the ProfileUpdated event with the tracking profile encapsulated in a ProfileUpdatedEventArgs. The runtime tracking infrastructure uses this event to update its profile cache. You can set ProfileChangeCheckInterval to specify the frequency at which the SqlTrackingService examines its database.

Applies to