42 references to TrackingWorkflowEvent
System.Workflow.Runtime (42)
RTTrackingProfile.cs (1)
265
internal bool TryTrackInstanceEvent(
TrackingWorkflowEvent
status, WorkflowTrackingRecord record)
Tracking.cs (18)
697
NotifyChannels(
TrackingWorkflowEvent
.Created, e, exec);
700
NotifyChannels(
TrackingWorkflowEvent
.Started, e, exec);
703
NotifyChannels(
TrackingWorkflowEvent
.Suspended, e, exec);
706
NotifyChannels(
TrackingWorkflowEvent
.Resumed, e, exec);
709
NotifyChannels(
TrackingWorkflowEvent
.Persisted, e, exec);
712
NotifyChannels(
TrackingWorkflowEvent
.Unloaded, e, exec);
715
NotifyChannels(
TrackingWorkflowEvent
.Loaded, e, exec);
718
NotifyChannels(
TrackingWorkflowEvent
.Completed, e, exec);
722
NotifyChannels(
TrackingWorkflowEvent
.Aborted, e, exec);
725
NotifyChannels(
TrackingWorkflowEvent
.Terminated, e, exec);
729
NotifyChannels(
TrackingWorkflowEvent
.Exception, e, exec);
732
NotifyChannels(
TrackingWorkflowEvent
.Idle, e, exec);
817
WorkflowTrackingRecord rec = new WorkflowTrackingRecord(
TrackingWorkflowEvent
.Changed, dt, eventOrderId, new TrackingWorkflowChangedEventArgs(e.ChangeActions, exec.WorkflowDefinition));
818
if (wrapper.GetTrackingProfile(exec).TryTrackInstanceEvent(
TrackingWorkflowEvent
.Changed, rec))
827
private void NotifyChannels(
TrackingWorkflowEvent
evt, WorkflowExecutor.WorkflowExecutionEventArgs e, WorkflowExecutor exec)
837
case
TrackingWorkflowEvent
.Suspended:
840
case
TrackingWorkflowEvent
.Terminated:
847
case
TrackingWorkflowEvent
.Exception:
Tracking\SqlTrackingService.cs (5)
898
if (
TrackingWorkflowEvent
.Changed == inst.TrackingWorkflowEvent)
1042
if (
TrackingWorkflowEvent
.Changed == record.TrackingWorkflowEvent)
2259
if (
TrackingWorkflowEvent
.Changed == record.TrackingWorkflowEvent)
2297
case
TrackingWorkflowEvent
.Terminated:
2305
case
TrackingWorkflowEvent
.Exception:
Tracking\SqlTrackingWorkflowInstance.cs (3)
495
TrackingWorkflowEvent
evt = (
TrackingWorkflowEvent
)reader[0];
547
if (
TrackingWorkflowEvent
.Changed != rec.TrackingWorkflowEvent)
Tracking\TrackingLocation.cs (5)
32
private IList<
TrackingWorkflowEvent
> _events = new List<
TrackingWorkflowEvent
>();
42
public WorkflowTrackingLocation(IList<
TrackingWorkflowEvent
> events)
50
public IList<
TrackingWorkflowEvent
> Events
59
internal bool Match(
TrackingWorkflowEvent
status)
Tracking\TrackingProfileSerializer.cs (6)
476
point.MatchingLocation.Events.Add((
TrackingWorkflowEvent
)Enum.Parse(typeof(
TrackingWorkflowEvent
), reader.ReadString()));
1315
private void WriteWorkflowEvents(IList<
TrackingWorkflowEvent
> events, XmlTextWriter writer)
1322
foreach (
TrackingWorkflowEvent
s in events)
1337
foreach (
TrackingWorkflowEvent
s in Enum.GetValues(typeof(
TrackingWorkflowEvent
)))
Tracking\TrackingRecord.cs (3)
273
private
TrackingWorkflowEvent
_event;
287
public WorkflowTrackingRecord(
TrackingWorkflowEvent
trackingWorkflowEvent, DateTime eventDateTime, int eventOrder, EventArgs eventArgs)
299
public
TrackingWorkflowEvent
TrackingWorkflowEvent
Tracking\TrackPoint.cs (1)
275
internal bool IsMatch(
TrackingWorkflowEvent
status)