1 write to configProperties
System.WorkflowServices (1)
System\ServiceModel\Configuration\WorkflowRuntimeElement.cs (1)
124
this.
configProperties
= new ConfigurationPropertyCollection();
8 references to configProperties
System.WorkflowServices (8)
System\ServiceModel\Configuration\WorkflowRuntimeElement.cs (8)
122
if (this.
configProperties
== null)
125
configProperties
.Add(new ConfigurationProperty(name, typeof(string), null));
126
configProperties
.Add(new ConfigurationProperty(validateOnCreate, typeof(bool), true));
127
configProperties
.Add(new ConfigurationProperty(enablePerfCounters, typeof(bool), true));
128
configProperties
.Add(new ConfigurationProperty(services, typeof(ExtendedWorkflowRuntimeServiceElementCollection), null));
129
configProperties
.Add(new ConfigurationProperty(commonParameters, typeof(NameValueConfigurationCollection), null));
130
configProperties
.Add(new ConfigurationProperty(cachedInstanceExpiration, typeof(TimeSpan), WorkflowRuntimeBehavior.DefaultCachedInstanceExpiration));
133
return this.
configProperties
;