1 implementation of IProfileNotification
System.Workflow.Runtime (1)
Tracking\SqlTrackingService.cs (1)
32
public sealed class SqlTrackingService : TrackingService,
IProfileNotification
7 references to IProfileNotification
System.Workflow.Runtime (7)
Tracking.cs (7)
1153
if (service is
IProfileNotification
)
1155
((
IProfileNotification
)service).ProfileUpdated += new EventHandler<ProfileUpdatedEventArgs>(ProfileUpdated);
1156
((
IProfileNotification
)service).ProfileRemoved += new EventHandler<ProfileRemovedEventArgs>(ProfileRemoved);
1174
if (service is
IProfileNotification
)
1176
((
IProfileNotification
)service).ProfileUpdated -= new EventHandler<ProfileUpdatedEventArgs>(ProfileUpdated);
1177
((
IProfileNotification
)service).ProfileRemoved -= new EventHandler<ProfileRemovedEventArgs>(ProfileRemoved);
1202
if (service is
IProfileNotification
)