31 references to WorkflowChanges
System.Workflow.Activities (4)
Schedule.cs (2)
55return WorkflowChanges.GetCondition(this) as ActivityCondition; 59WorkflowChanges.SetCondition(this, value);
StateMachineWorkflow.cs (2)
53return WorkflowChanges.GetCondition(this) as ActivityCondition; 57WorkflowChanges.SetCondition(this, value);
System.Workflow.ComponentModel (23)
AuthoringOM\Activity.cs (1)
2054protected void ApplyWorkflowChanges(WorkflowChanges workflowChanges)
AuthoringOM\ScheduleChanges.cs (18)
28public static readonly DependencyProperty ConditionProperty = DependencyProperty.RegisterAttached("Condition", typeof(ActivityCondition), typeof(WorkflowChanges), new PropertyMetadata(DependencyPropertyOptions.Metadata)); 29internal static DependencyProperty WorkflowChangeActionsProperty = DependencyProperty.RegisterAttached("WorkflowChangeActions", typeof(IList), typeof(WorkflowChanges), new PropertyMetadata(DependencyPropertyOptions.NonSerialized)); 30internal static DependencyProperty WorkflowChangeVersionProperty = DependencyProperty.RegisterAttached("WorkflowChangeVersion", typeof(Guid), typeof(WorkflowChanges), new PropertyMetadata(Guid.Empty, DependencyPropertyOptions.NonSerialized)); 134ArrayList workflowChanges = (ArrayList)((Activity)this.clonedRootActivity).GetValue(WorkflowChanges.WorkflowChangeActionsProperty); 138((Activity)this.clonedRootActivity).SetValue(WorkflowChanges.WorkflowChangeActionsProperty, workflowChanges); 142((Activity)this.clonedRootActivity).SetValue(WorkflowChanges.WorkflowChangeVersionProperty, Guid.NewGuid()); 343ActivityCondition dynamicUpdateCondition = ((Activity)workflowCoreRuntime.RootActivity).GetValue(WorkflowChanges.ConditionProperty) as ActivityCondition; 360if (compositeActivity == null || !WorkflowChanges.IsActivityExecutable(compositeActivity)) 398if (ownerActivity == null || !WorkflowChanges.IsActivityExecutable(ownerActivity)) 412if (WorkflowChanges.IsActivityExecutable(addedActivity)) 422if (WorkflowChanges.IsActivityExecutable(removedActivityAction.OriginalRemovedActivity)) 450Guid originalChangeVersion = (Guid)originalWorkflowDefinition.GetValue(WorkflowChanges.WorkflowChangeVersionProperty); 451Guid currentChangeVersion = (Guid)currentWorkflowDefinition.GetValue(WorkflowChanges.WorkflowChangeVersionProperty); 536ArrayList workflowChanges = (ArrayList)((Activity)originalRootActivity).GetValue(WorkflowChanges.WorkflowChangeActionsProperty); 548((Activity)clonedRootActivity).SetValue(WorkflowChanges.WorkflowChangeActionsProperty, workflowChanges); 674if (ownerActivity != null && WorkflowChanges.IsActivityExecutable(ownerActivity)) 757TypeProvider typeProvider = WorkflowChanges.CreateTypeProvider(rootActivity); 853if (WorkflowChanges.IsActivityExecutable(removedActivityInContext) && removedActivityInContext.ExecutionStatus == ActivityExecutionStatus.Executing)
AuthoringOM\Serializer\ActivitySurrogate.cs (4)
88ArrayList changeActions = (ArrayList)workflowDefinition.GetValue(WorkflowChanges.WorkflowChangeActionsProperty); 91Guid changeVersion = (Guid)workflowDefinition.GetValue(WorkflowChanges.WorkflowChangeVersionProperty); 240rootActivityDefinition.SetValue(WorkflowChanges.WorkflowChangeActionsProperty, changeActions); 241rootActivityDefinition.SetValue(WorkflowChanges.WorkflowChangeVersionProperty, this.workflowChangeVersion);
System.Workflow.Runtime (4)
DebugEngine\DebugController.cs (1)
564changeActions = (ArrayList)workflowDefinition.GetValue(WorkflowChanges.WorkflowChangeActionsProperty);
WorkflowExecutor.cs (2)
2652internal void ApplyWorkflowChanges(WorkflowChanges workflowChanges) 2775return ((Activity)this.WorkflowDefinition).GetValue(WorkflowChanges.WorkflowChangeActionsProperty) != null;
WorkflowInstance.cs (1)
379public void ApplyWorkflowChanges(WorkflowChanges workflowChanges)