4 instantiations of CreationContext
System.Workflow.Runtime (4)
WorkflowExecutor.cs (1)
2837WorkflowInstance instance = this.WorkflowRuntime.InternalCreateWorkflow(new CreationContext(workflowType, this, this.CurrentActivity.QualifiedName, namedArgumentValues), Guid.NewGuid());
WorkflowRuntime.cs (3)
364return InternalCreateWorkflow(new CreationContext(workflowType, null, null, null), Guid.NewGuid()); 394return InternalCreateWorkflow(new CreationContext(workflowType, null, null, namedArgumentValues), instanceId); 403CreationContext context = new CreationContext(workflowDefinitionReader, rulesReader, namedArgumentValues);
5 references to CreationContext
System.Workflow.Runtime (5)
WorkflowRuntime.cs (5)
403CreationContext context = new CreationContext(workflowDefinitionReader, rulesReader, namedArgumentValues); 407internal WorkflowInstance InternalCreateWorkflow(CreationContext context, Guid instanceId) 469internal WorkflowExecutor Load(Guid key, CreationContext context, WorkflowInstance workflowInstance) 536private Activity InitializeExecutor(Guid instanceId, CreationContext context, WorkflowExecutor executor, WorkflowInstance workflowInstance) 663private WorkflowExecutor GetWorkflowExecutor(Guid instanceId, CreationContext context)