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