16 references to WorkflowDefinition
System.Workflow.Runtime (16)
Scheduler.cs (1)
70
return "Scheduler('" + ((Activity)this.RootWorkflowExecutor.
WorkflowDefinition
).QualifiedName + "')";
Tracking.cs (7)
154
listener = GetTrackingListener(exec.
WorkflowDefinition
, exec, listenerBroker);
173
listener = GetTrackingListener(exec.
WorkflowDefinition
, exec);
332
Type workflowType = exec.
WorkflowDefinition
.GetType();
368
RTTrackingProfile rtp = new RTTrackingProfile(profile, exec.
WorkflowDefinition
, workflowType);
398
TrackingParameters tp = new TrackingParameters(instanceId, workflowType, exec.
WorkflowDefinition
, activityCallPath, callerInstanceId, context, callerContext, callerParentContext);
483
TrackingParameters parameters = new TrackingParameters(instanceID, workflowType, exec.
WorkflowDefinition
, activityCallPath, callerInstanceId, context, callerContext, callerParentContext);
817
WorkflowTrackingRecord rec = new WorkflowTrackingRecord(TrackingWorkflowEvent.Changed, dt, eventOrderId, new TrackingWorkflowChangedEventArgs(e.ChangeActions, exec.
WorkflowDefinition
));
WorkflowExecutor.cs (6)
159
Activity workflowDefinition = this.
WorkflowDefinition
;
368
PropertyInfo propertyInfo = this.
WorkflowDefinition
.GetType().GetProperty(arg);
382
throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, ExecutionStringManager.SemanticErrorInvalidNamedParameter, ((Activity)this.
WorkflowDefinition
).Name, arg));
2636
return this.
WorkflowDefinition
;
2644
Activity definition = this.
WorkflowDefinition
;
2775
return ((Activity)this.
WorkflowDefinition
).GetValue(WorkflowChanges.WorkflowChangeActionsProperty) != null;
WorkflowRuntime.cs (1)
1271
WorkflowCompletedEventArgs args = new WorkflowCompletedEventArgs(exec.WorkflowInstance, exec.
WorkflowDefinition
);
WorkflowStateRollbackService.cs (1)
50
this.workflowDefinition = this.workflowExecutor.
WorkflowDefinition
;