Home
last modified time | relevance | path

Searched refs:workflowRuntime (Results 1 – 8 of 8) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.WorkflowServices/System/ServiceModel/Description/
H A DWorkflowRuntimeBehavior.cs26 WorkflowRuntime workflowRuntime = null; field in System.ServiceModel.Description.WorkflowRuntimeBehavior
33 …internal WorkflowRuntimeBehavior(WorkflowRuntime workflowRuntime, TimeSpan cachedInstanceExpiratio… in WorkflowRuntimeBehavior() argument
35 this.workflowRuntime = workflowRuntime; in WorkflowRuntimeBehavior()
60 if (this.workflowRuntime == null)
62 … this.workflowRuntime = new WorkflowRuntime(WorkflowRuntimeBehavior.DefaultWorkflowRuntimeSection);
64 return this.workflowRuntime;
127 void ValidateWorkflowRuntime(WorkflowRuntime workflowRuntime) in ValidateWorkflowRuntime() argument
129 if (workflowRuntime.IsStarted) in ValidateWorkflowRuntime()
134 …WorkflowSchedulerService workflowSchedulerService = workflowRuntime.GetService<WorkflowSchedulerSe… in ValidateWorkflowRuntime()
142 workflowRuntime.AddService(new SynchronizationContextWorkflowSchedulerService()); in ValidateWorkflowRuntime()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.WorkflowServices/System/Workflow/Runtime/
H A DWorkflowDefinitionContext.cs15 WorkflowRuntime workflowRuntime; field in System.Workflow.Runtime.WorkflowDefinitionContext
31 … Fx.Assert(this.workflowRuntime != null, "Attempt to call WorkflowRuntime before Register");
32 return this.workflowRuntime;
40 internal void Register(WorkflowRuntime workflowRuntime, bool validate) in Register() argument
42 if (workflowRuntime == null) in Register()
47 this.workflowRuntime = workflowRuntime; in Register()
51 if (!this.workflowRuntime.IsStarted) in Register()
53 this.workflowRuntime.StartRuntime(); in Register()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.WorkflowServices/System/ServiceModel/Dispatcher/
H A DWorkflowInstanceLifeTimeManagerExtension.cs26 WorkflowRuntime workflowRuntime; field in System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension
30 this.workflowRuntime = workflowRuntime; in WorkflowInstanceLifetimeManagerExtension()
185 this.workflowRuntime.GetWorkflow(instanceId).TryUnload(); in OnTimer()
189 this.workflowRuntime.GetWorkflow(instanceId).Abort(); in OnTimer()
205 this.workflowRuntime.GetWorkflow(instanceId).Abort(); in OnTimer()
325 this.workflowRuntime.WorkflowLoaded += OnWorkflowLoaded; in RegisterEvents()
326 this.workflowRuntime.WorkflowCreated += OnWorkflowStarted; in RegisterEvents()
329 this.workflowRuntime.WorkflowAborted += OnWorkflowAborted; in RegisterEvents()
330 this.workflowRuntime.WorkflowCompleted += OnWorkflowCompleted; in RegisterEvents()
332 this.workflowRuntime.WorkflowUnloaded += OnWorkflowUnloaded; in RegisterEvents()
[all …]
H A DWorkflowOperationInvoker.cs27 WorkflowRuntime workflowRuntime; field in System.ServiceModel.Dispatcher.WorkflowOperationInvoker
30 WorkflowRuntime workflowRuntime, DispatchRuntime dispatchRuntime) in WorkflowOperationInvoker() argument
37 if (workflowRuntime == null) in WorkflowOperationInvoker()
61 this.workflowRuntime = workflowRuntime; in WorkflowOperationInvoker()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.Runtime/
H A DWorkflowDefinitionDispenser.cs38 private WorkflowRuntime workflowRuntime; field in System.Workflow.Runtime.WorkflowDefinitionDispenser
51 this.workflowRuntime = runtime; in WorkflowDefinitionDispenser()
129 …localWorkflowDefinitionLoaded(this.workflowRuntime, new WorkflowDefinitionEventArgs(workflowType)); in GetRootActivity()
175 …localWorkflowDefinitionLoaded(this.workflowRuntime, new WorkflowDefinitionEventArgs(xomlHashCode)); in GetRootActivity()
245 WorkflowLoaderService loader = workflowRuntime.GetService<WorkflowLoaderService>(); in LoadRootActivity()
253 ValidateDefinition(root, true, workflowRuntime.GetService<ITypeProvider>()); in LoadRootActivity()
258 root.SetValue(Activity.WorkflowRuntimeProperty, workflowRuntime); in LoadRootActivity()
266 WorkflowLoaderService loader = workflowRuntime.GetService<WorkflowLoaderService>(); in LoadRootActivity()
298 ITypeProvider typeProvider = workflowRuntime.GetService<ITypeProvider>(); in LoadRootActivity()
309 root.SetValue(Activity.WorkflowRuntimeProperty, workflowRuntime); in LoadRootActivity()
H A DAmbientEnvironment.cs221 static WorkflowRuntime workflowRuntime; field in System.Workflow.Runtime.RuntimeEnvironment
225 workflowRuntime = runtime; in RuntimeEnvironment()
232 return RuntimeEnvironment.workflowRuntime;
237 workflowRuntime = null; in IDisposable.Dispose()
H A DWorkflowInstance.cs30 internal WorkflowInstance(Guid instanceId, WorkflowRuntime workflowRuntime) in WorkflowInstance() argument
34 if (workflowRuntime == null) in WorkflowInstance()
38 this._runtime = workflowRuntime; in WorkflowInstance()
H A DWorkflowExecutor.cs214 internal void RegisterWithRuntime(WorkflowRuntime workflowRuntime) in RegisterWithRuntime() argument
217 _runtime = workflowRuntime; in RegisterWithRuntime()
244 internal void ReRegisterWithRuntime(WorkflowRuntime workflowRuntime) in ReRegisterWithRuntime() argument
249 _runtime = workflowRuntime; in ReRegisterWithRuntime()