3 instantiations of WorkflowRuntimeBehavior
System.WorkflowServices (3)
System\ServiceModel\Configuration\WorkflowRuntimeElement.cs (1)
139return new WorkflowRuntimeBehavior(new WorkflowRuntime(CreateWorkflowRuntimeSection()), this.CachedInstanceExpiration, this.ValidateOnCreate);
System\ServiceModel\Description\WorkflowServiceBehavior.cs (1)
233workflowRuntimeBehavior = new WorkflowRuntimeBehavior();
System\ServiceModel\WorkflowServiceHost.cs (1)
171this.Description.Behaviors.Add(new WorkflowRuntimeBehavior());
12 references to WorkflowRuntimeBehavior
System.WorkflowServices (12)
System\ServiceModel\Configuration\WorkflowRuntimeElement.cs (4)
40return typeof(WorkflowRuntimeBehavior); 44[ConfigurationProperty(cachedInstanceExpiration, IsRequired = false, DefaultValue = WorkflowRuntimeBehavior.DefaultCachedInstanceExpirationString)] 105[ConfigurationProperty(validateOnCreate, DefaultValue = WorkflowRuntimeBehavior.DefaultValidateOnCreate)] 130configProperties.Add(new ConfigurationProperty(cachedInstanceExpiration, typeof(TimeSpan), WorkflowRuntimeBehavior.DefaultCachedInstanceExpiration));
System\ServiceModel\Description\WorkflowOperationBehavior.cs (2)
68WorkflowRuntimeBehavior workflowRuntimeBehavior = dispatch.Parent.ChannelDispatcher.Host.Description.Behaviors.Find<WorkflowRuntimeBehavior>();
System\ServiceModel\Description\WorkflowRuntimeBehavior.cs (1)
62this.workflowRuntime = new WorkflowRuntime(WorkflowRuntimeBehavior.DefaultWorkflowRuntimeSection);
System\ServiceModel\Description\WorkflowServiceBehavior.cs (2)
229WorkflowRuntimeBehavior workflowRuntimeBehavior = description.Behaviors.Find<WorkflowRuntimeBehavior>();
System\ServiceModel\WorkflowServiceHost.cs (3)
155WorkflowRuntimeBehavior workflowRuntimeBehavior = this.Description.Behaviors.Find<WorkflowRuntimeBehavior>(); 169if (!this.Description.Behaviors.Contains(typeof(WorkflowRuntimeBehavior)))