1 instantiation of WorkflowIdleBehavior
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Configuration\WorkflowIdleElement.cs (1)
44return new WorkflowIdleBehavior()
6 references to WorkflowIdleBehavior
System.ServiceModel.Activities (6)
System\ServiceModel\Activities\Configuration\WorkflowIdleElement.cs (4)
24[ConfigurationProperty(TimeToPersistString, DefaultValue = WorkflowIdleBehavior.defaultTimeToPersistString)] 33[ConfigurationProperty(TimeToUnloadString, DefaultValue = WorkflowIdleBehavior.defaultTimeToUnloadString)] 51get { return typeof(WorkflowIdleBehavior); } 62properties.Add(new ConfigurationProperty(TimeToUnloadString, typeof(TimeSpan), TimeSpan.Parse(WorkflowIdleBehavior.defaultTimeToUnloadString, CultureInfo.InvariantCulture), new TimeSpanOrInfiniteConverter(), new TimeSpanOrInfiniteValidator(TimeSpan.Zero, TimeSpan.MaxValue), ConfigurationPropertyOptions.None));
System\ServiceModel\Activities\WorkflowServiceHost.cs (2)
254this.idleTimeToPersist = WorkflowIdleBehavior.defaultTimeToPersist; 255this.idleTimeToUnload = WorkflowIdleBehavior.defaultTimeToUnload;