20 references to ConfigurationProperty
System.Configuration (2)
System\Configuration\ProviderSettings.cs (2)
204SetPropName = new ConfigurationProperty(PropName, typeof(string), null); 219ConfigurationProperty _propName = new ConfigurationProperty(name, typeof(string), value);
System.ServiceModel (2)
System\ServiceModel\Configuration\ServiceModelExtensionCollectionElement.cs (2)
137ConfigurationProperty configProperty = new ConfigurationProperty(element.ConfigurationElementName, element.GetType(), null); 625ConfigurationProperty configProperty = new ConfigurationProperty(configuredSectionName, extension.GetType(), null);
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Configuration\SendMessageChannelCacheElement.cs (1)
54properties.Add(new ConfigurationProperty(ConfigurationStrings.AllowUnsafeCaching, typeof(bool), ChannelCacheDefaults.DefaultAllowUnsafeSharing));
System.Web (3)
Configuration\ProtocolsSection.cs (3)
165new ConfigurationProperty( "processHandlerType", 169new ConfigurationProperty( "appDomainHandlerType", 173new ConfigurationProperty( "validate",
System.Web.Extensions (4)
Configuration\ScriptingAuthenticationServiceSection.cs (2)
16new ConfigurationProperty("enabled", 21new ConfigurationProperty("requireSSL",
Configuration\ScriptingProfileServiceSection.cs (1)
17new ConfigurationProperty("enabled",
Configuration\ScriptingRoleServiceSection.cs (1)
18new ConfigurationProperty("enabled",
System.Web.Services (2)
System\Web\Services\Configuration\DiagnosticsElement.cs (1)
30readonly ConfigurationProperty suppressReturningExceptions = new ConfigurationProperty("suppressReturningExceptions", typeof(bool), false);
System\Web\Services\Configuration\SoapEnvelopeProcessingElement.cs (1)
49readonly ConfigurationProperty strict = new ConfigurationProperty("strict", typeof(bool), false);
System.WorkflowServices (6)
System\ServiceModel\Configuration\WorkflowRuntimeElement.cs (6)
125configProperties.Add(new ConfigurationProperty(name, typeof(string), null)); 126configProperties.Add(new ConfigurationProperty(validateOnCreate, typeof(bool), true)); 127configProperties.Add(new ConfigurationProperty(enablePerfCounters, typeof(bool), true)); 128configProperties.Add(new ConfigurationProperty(services, typeof(ExtendedWorkflowRuntimeServiceElementCollection), null)); 129configProperties.Add(new ConfigurationProperty(commonParameters, typeof(NameValueConfigurationCollection), null)); 130configProperties.Add(new ConfigurationProperty(cachedInstanceExpiration, typeof(TimeSpan), WorkflowRuntimeBehavior.DefaultCachedInstanceExpiration));