268 references to ConfigurationProperty
System.Configuration (13)
System\Configuration\AppSettingsSection.cs (2)
26ConfigurationProperty propAppSettings = new ConfigurationProperty(null, typeof(KeyValueConfigurationCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); 27ConfigurationProperty propFile = new ConfigurationProperty("file", typeof(string), String.Empty, ConfigurationPropertyOptions.None);
System\Configuration\ConfigurationProperty.cs (1)
51: this(name, type, defaultValue, ConfigurationPropertyOptions.None) {
System\Configuration\ConnectionStringSettings.cs (2)
23new ConfigurationProperty("connectionString", typeof(string), "", ConfigurationPropertyOptions.IsRequired); 25new ConfigurationProperty("providerName", typeof(string), String.Empty, ConfigurationPropertyOptions.None);
System\Configuration\ConnectionStringsSection.cs (1)
19new ConfigurationProperty(null, typeof(ConnectionStringSettingsCollection), null,
System\Configuration\KeyValueConfigurationElement.cs (2)
19new ConfigurationProperty("key", typeof(string), String.Empty, ConfigurationPropertyOptions.IsKey | ConfigurationPropertyOptions.IsRequired); 21new ConfigurationProperty("value", typeof(string), String.Empty, ConfigurationPropertyOptions.None);
System\Configuration\NameValueConfigurationElement.cs (2)
29new ConfigurationProperty("name", typeof(string), String.Empty, ConfigurationPropertyOptions.IsKey); 31new ConfigurationProperty("value", typeof(string), String.Empty, ConfigurationPropertyOptions.None);
System\Configuration\ProtectedConfigurationSection.cs (1)
106new ConfigurationProperty("providers",
System\Configuration\ProtectedProviderSettings.cs (1)
18new ConfigurationProperty(null, typeof(ProviderSettingsCollection), null, ConfigurationPropertyOptions.IsDefaultCollection);
System\Configuration\ProviderSettings.cs (1)
27private readonly ConfigurationProperty _propType = new ConfigurationProperty("type", typeof(String), "",
System.Drawing (1)
commonui\System\Drawing\Configuration\SystemDrawingSection.cs (1)
37new ConfigurationProperty(BitmapSuffixSectionName, typeof(string), null, ConfigurationPropertyOptions.None);
System.Runtime.Caching (1)
System\Caching\Configuration\MemoryCacheSection.cs (1)
30_propNamedCaches = new ConfigurationProperty("namedCaches",
System.ServiceModel (2)
System\ServiceModel\Configuration\BindingsSection.cs (1)
288ConfigurationProperty property = new ConfigurationProperty(bindingExtension.Name,
System\ServiceModel\Configuration\StandardEndpointsSection.cs (1)
189ConfigurationProperty property = new ConfigurationProperty(endpointExtension.Name,
System.Transactions (1)
System\Transactions\Configuration\DefaultSettingsSection.cs (1)
60retval.Add(new ConfigurationProperty(ConfigurationStrings.DistributedTransactionManagerName, typeof(string), ConfigurationStrings.DefaultDistributedTransactionManagerName, ConfigurationPropertyOptions.None));
System.Web (228)
Configuration\AnonymousIdentificationSection.cs (6)
53new ConfigurationProperty("enabled", typeof(bool), false, ConfigurationPropertyOptions.None); 76new ConfigurationProperty("cookieRequireSSL", typeof(bool), false, ConfigurationPropertyOptions.None); 78new ConfigurationProperty("cookieSlidingExpiration", typeof(bool), true, ConfigurationPropertyOptions.None); 80new ConfigurationProperty("cookieProtection", typeof(CookieProtection), CookieProtection.Validation, ConfigurationPropertyOptions.None); 82new ConfigurationProperty("cookieless", typeof(HttpCookieMode), HttpCookieMode.UseCookies, ConfigurationPropertyOptions.None); 84new ConfigurationProperty("domain", typeof(string), null, ConfigurationPropertyOptions.None);
Configuration\AuthenticationSection.cs (3)
95new ConfigurationProperty("forms", typeof(FormsAuthenticationConfiguration), null, ConfigurationPropertyOptions.None); 99new ConfigurationProperty("passport", typeof(PassportAuthentication), null, ConfigurationPropertyOptions.None); 102new ConfigurationProperty("mode", typeof(AuthenticationMode), AuthenticationMode.Windows, ConfigurationPropertyOptions.None);
Configuration\AuthorizationSection.cs (1)
56new ConfigurationProperty(null, typeof(AuthorizationRuleCollection), null, ConfigurationPropertyOptions.IsDefaultCollection);
Configuration\CacheSection.cs (3)
63_propProviders = new ConfigurationProperty("providers", typeof(ProviderSettingsCollection), null, ConfigurationPropertyOptions.None); 73new ConfigurationProperty("disableMemoryCollection", 78new ConfigurationProperty("disableExpiration",
Configuration\ClientTargetSection.cs (1)
26new ConfigurationProperty(null,
Configuration\CompilationSection.cs (24)
105new ConfigurationProperty(tempDirectoryAttributeName, typeof(string), 108new ConfigurationProperty("debug", typeof(bool), false, ConfigurationPropertyOptions.None); 110new ConfigurationProperty("strict", typeof(bool), false, ConfigurationPropertyOptions.None); 112new ConfigurationProperty("explicit", typeof(bool), true, ConfigurationPropertyOptions.None); 114new ConfigurationProperty("batch", typeof(bool), true, ConfigurationPropertyOptions.None); 116new ConfigurationProperty("optimizeCompilations", typeof(bool), false, ConfigurationPropertyOptions.None); 125new ConfigurationProperty("maxBatchSize", typeof(int), 1000, ConfigurationPropertyOptions.None); 127new ConfigurationProperty("maxBatchGeneratedFileSize", typeof(int), 1000, ConfigurationPropertyOptions.None); 129new ConfigurationProperty("numRecompilesBeforeAppRestart", typeof(int), 15, ConfigurationPropertyOptions.None); 132new ConfigurationProperty("defaultLanguage", typeof(string), "vb", ConfigurationPropertyOptions.None); 138new ConfigurationProperty("targetFramework", typeof(string), null, ConfigurationPropertyOptions.None); 141new ConfigurationProperty("compilers", typeof(CompilerCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); 143new ConfigurationProperty("assemblies", typeof(AssemblyCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); 145new ConfigurationProperty("buildProviders", typeof(BuildProviderCollection), 148new ConfigurationProperty("folderLevelBuildProviders", typeof(FolderLevelBuildProviderCollection), 151new ConfigurationProperty("expressionBuilders", typeof(ExpressionBuilderCollection), 154new ConfigurationProperty("urlLinePragmas", typeof(bool), false, ConfigurationPropertyOptions.None); 156new ConfigurationProperty("codeSubDirectories", typeof(CodeSubDirectoriesCollection), 159new ConfigurationProperty(assemblyPostProcessorTypeAttributeName, typeof(string), 162new ConfigurationProperty("enablePrefetchOptimization", typeof(bool), false, ConfigurationPropertyOptions.None); 164new ConfigurationProperty("profileGuidedOptimizations", typeof(ProfileGuidedOptimizationsFlags), 167new ConfigurationProperty(controlBuilderInterceptorTypeAttributeName, typeof(string), 170new ConfigurationProperty("disableObsoleteWarnings", typeof(bool), 173new ConfigurationProperty("maxConcurrentCompilations", typeof(int), 1, ConfigurationPropertyOptions.None);
Configuration\Compiler.cs (4)
31new ConfigurationProperty("language", typeof(string), String.Empty, ConfigurationPropertyOptions.None ); 33new ConfigurationProperty("extension", typeof(string), String.Empty, ConfigurationPropertyOptions.None); 35new ConfigurationProperty("type", typeof(string), String.Empty, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsTypeStringTransformationRequired); 44new ConfigurationProperty(compilerOptionsAttribName, typeof(string), String.Empty, ConfigurationPropertyOptions.None);
Configuration\CustomErrorsSection.cs (5)
38new ConfigurationProperty("allowNestedErrors", 44new ConfigurationProperty("defaultRedirect", 50new ConfigurationProperty("redirectMode", 56new ConfigurationProperty("mode", 62new ConfigurationProperty(null,
Configuration\DeploymentSection.cs (1)
21new ConfigurationProperty("retail", typeof(bool),false,ConfigurationPropertyOptions.None);
Configuration\EventMappingSettings.cs (1)
35private static readonly ConfigurationProperty _propType = new ConfigurationProperty("type", typeof(string), String.Empty, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsTypeStringTransformationRequired);
Configuration\FormsAuthenticationConfiguration.cs (9)
101new ConfigurationProperty("credentials", 131new ConfigurationProperty("protection", 153new ConfigurationProperty("requireSSL", 159new ConfigurationProperty("slidingExpiration", 165new ConfigurationProperty("cookieless", 171new ConfigurationProperty("domain", 177new ConfigurationProperty("enableCrossAppRedirects", 183new ConfigurationProperty("ticketCompatibilityMode", 189new ConfigurationProperty("cookieSameSite",
Configuration\FormsAuthenticationCredentials.cs (2)
98new ConfigurationProperty(null, 104new ConfigurationProperty("passwordFormat",
Configuration\FormsAuthenticationUser.cs (1)
104new ConfigurationProperty("password",
Configuration\FullTrustAssembliesSection.cs (1)
23new ConfigurationProperty(null, typeof(FullTrustAssemblyCollection), null, ConfigurationPropertyOptions.IsDefaultCollection);
Configuration\GlobalizationSection.cs (9)
42new ConfigurationProperty("requestEncoding", typeof(string), Encoding.UTF8.WebName, ConfigurationPropertyOptions.None); 44new ConfigurationProperty("responseEncoding", typeof(string), Encoding.UTF8.WebName, ConfigurationPropertyOptions.None); 46new ConfigurationProperty("fileEncoding", typeof(string), String.Empty, ConfigurationPropertyOptions.None); 48new ConfigurationProperty("culture", typeof(string), String.Empty, ConfigurationPropertyOptions.None); 50new ConfigurationProperty("uiCulture", typeof(string), String.Empty, ConfigurationPropertyOptions.None); 52new ConfigurationProperty("enableClientBasedCulture", typeof(bool), false, ConfigurationPropertyOptions.None); 54new ConfigurationProperty("responseHeaderEncoding", typeof(string), Encoding.UTF8.WebName, ConfigurationPropertyOptions.None); 56new ConfigurationProperty("resourceProviderFactoryType", typeof(string), String.Empty, ConfigurationPropertyOptions.None); 58new ConfigurationProperty("enableBestFitResponseEncoding", typeof(bool), false, ConfigurationPropertyOptions.None);
Configuration\HealthMonitoringSection.cs (6)
268new ConfigurationProperty("enabled", 274new ConfigurationProperty("bufferModes", 280new ConfigurationProperty("providers", 286new ConfigurationProperty("profiles", 292new ConfigurationProperty("rules", 298new ConfigurationProperty("eventMappings",
Configuration\HostingEnvironmentSection.cs (1)
43new ConfigurationProperty("shadowCopyBinAssemblies", typeof(bool), true, ConfigurationPropertyOptions.None);
Configuration\HttpCookiesSection.cs (3)
21new ConfigurationProperty("httpOnlyCookies", typeof(bool), false, ConfigurationPropertyOptions.None); 23new ConfigurationProperty("requireSSL", typeof(bool), false, ConfigurationPropertyOptions.None); 25new ConfigurationProperty("domain", typeof(string), String.Empty, ConfigurationPropertyOptions.None);
Configuration\HttpHandlerAction.cs (1)
44new ConfigurationProperty("validate",
Configuration\HttpHandlersSection.cs (1)
23new ConfigurationProperty(null, typeof(HttpHandlerActionCollection), null, ConfigurationPropertyOptions.IsDefaultCollection);
Configuration\HttpModuleAction.cs (1)
37new ConfigurationProperty("type", typeof(string), String.Empty, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsTypeStringTransformationRequired);
Configuration\HttpModulesSection.cs (1)
23new ConfigurationProperty(null,
Configuration\HttpRuntimeSection.cs (13)
70new ConfigurationProperty("asyncPreloadMode", 97new ConfigurationProperty("useFullyQualifiedRedirectUrl", 123new ConfigurationProperty("enableKernelOutputCache", 128new ConfigurationProperty("enableVersionHeader", 133new ConfigurationProperty("requireRootedSaveAsPath", 138new ConfigurationProperty("enable", 178new ConfigurationProperty("enableHeaderChecking", 183new ConfigurationProperty("sendCacheControlHeader", 188new ConfigurationProperty("apartmentThreading", 239new ConfigurationProperty("relaxedUrlToFileSystemMapping", 245new ConfigurationProperty("allowDynamicModuleRegistration", 251new ConfigurationProperty("fcnMode", 257new ConfigurationProperty("targetFramework",
Configuration\IdentitySection.cs (3)
31new ConfigurationProperty("impersonate", typeof(bool), false, ConfigurationPropertyOptions.None); 33new ConfigurationProperty("userName", typeof(string), String.Empty, ConfigurationPropertyOptions.None); 35new ConfigurationProperty("password", typeof(string), String.Empty, ConfigurationPropertyOptions.None);
Configuration\MembershipSection.cs (2)
86_propProviders = new ConfigurationProperty("providers", typeof(ProviderSettingsCollection), null, ConfigurationPropertyOptions.None); 101_propHashAlgorithmType = new ConfigurationProperty("hashAlgorithmType", typeof(string), string.Empty, ConfigurationPropertyOptions.None);
Configuration\NamespaceCollection.cs (1)
28new ConfigurationProperty("autoImportVBNamespace", typeof(bool), true, ConfigurationPropertyOptions.None);
Configuration\OutputCacheProfile.cs (10)
48_propEnabled = new ConfigurationProperty("enabled", 52_propDuration = new ConfigurationProperty("duration", 56_propLocation = new ConfigurationProperty("location", 60_propSqlDependency = new ConfigurationProperty("sqlDependency", 64_propVaryByCustom = new ConfigurationProperty("varyByCustom", 68_propVaryByControl = new ConfigurationProperty("varyByControl", 72_propVaryByContentEncoding = new ConfigurationProperty("varyByContentEncoding", 76_propVaryByHeader = new ConfigurationProperty("varyByHeader", 80_propVaryByParam = new ConfigurationProperty("varyByParam", 84_propNoStore = new ConfigurationProperty("noStore",
Configuration\OutputCacheSection.cs (6)
35new ConfigurationProperty("enableOutputCache", 40new ConfigurationProperty("enableFragmentCache", 45new ConfigurationProperty("sendCacheControlHeader", 50new ConfigurationProperty("omitVaryStar", 56new ConfigurationProperty("enableKernelCacheForVaryByStar", 70new ConfigurationProperty("providers",
Configuration\OutputCacheSettingsSection.cs (1)
52_propOutputCacheProfiles = new ConfigurationProperty("outputCacheProfiles",
Configuration\PagesSection.cs (24)
97new ConfigurationProperty("buffer", typeof(bool), true, ConfigurationPropertyOptions.None); 106new ConfigurationProperty("enableSessionState", typeof(string), "true", ConfigurationPropertyOptions.None); 108new ConfigurationProperty("enableViewState", typeof(bool), true, ConfigurationPropertyOptions.None); 110new ConfigurationProperty("enableViewStateMac", typeof(bool), true, ConfigurationPropertyOptions.None); 112new ConfigurationProperty("enableEventValidation", typeof(bool), Page.EnableEventValidationDefault, ConfigurationPropertyOptions.None); 114new ConfigurationProperty("smartNavigation", typeof(bool), false, ConfigurationPropertyOptions.None); 116new ConfigurationProperty("autoEventWireup", typeof(bool), true, ConfigurationPropertyOptions.None); 118new ConfigurationProperty("pageBaseType", typeof(string), "System.Web.UI.Page", ConfigurationPropertyOptions.None); 120new ConfigurationProperty("userControlBaseType", typeof(string), "System.Web.UI.UserControl", ConfigurationPropertyOptions.None); 122new ConfigurationProperty("validateRequest", typeof(bool), true, ConfigurationPropertyOptions.None); 124new ConfigurationProperty("masterPageFile", typeof(string), String.Empty, ConfigurationPropertyOptions.None); 126new ConfigurationProperty("theme", typeof(string), String.Empty, ConfigurationPropertyOptions.None); 128new ConfigurationProperty("namespaces", typeof(NamespaceCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); 130new ConfigurationProperty("controls", typeof(TagPrefixCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); 132new ConfigurationProperty("tagMapping", typeof(TagMapCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); 134new ConfigurationProperty("maxPageStateFieldLength", typeof(int), Page.DefaultMaxPageStateFieldLength, ConfigurationPropertyOptions.None); 136new ConfigurationProperty("compilationMode", typeof(CompilationMode), CompilationMode.Always, ConfigurationPropertyOptions.None); 138new ConfigurationProperty("styleSheetTheme", typeof(string), String.Empty, ConfigurationPropertyOptions.None); 140new ConfigurationProperty("pageParserFilterType", typeof(string), String.Empty, ConfigurationPropertyOptions.None); 142new ConfigurationProperty("viewStateEncryptionMode", typeof(ViewStateEncryptionMode), ViewStateEncryptionMode.Auto, ConfigurationPropertyOptions.None); 144new ConfigurationProperty("maintainScrollPositionOnPostBack", typeof(bool), false, ConfigurationPropertyOptions.None); 153new ConfigurationProperty("renderAllHiddenFieldsAtTopOfForm", typeof(bool), true, ConfigurationPropertyOptions.None); 155new ConfigurationProperty("clientIDMode", typeof(ClientIDMode), ClientIDMode.Predictable, ConfigurationPropertyOptions.None); 157new ConfigurationProperty("ignoreDeviceFilters", typeof(IgnoreDeviceFilterElementCollection), null, ConfigurationPropertyOptions.IsDefaultCollection);
Configuration\PartialTrustVisibleAssembliesSection.cs (1)
23new ConfigurationProperty(null, typeof(PartialTrustVisibleAssemblyCollection), null, ConfigurationPropertyOptions.IsDefaultCollection);
Configuration\PassportAuthentication.cs (1)
98new ConfigurationProperty("redirectUrl", typeof(string), "internal", ConfigurationPropertyOptions.None);
Configuration\ProcessModelSection.cs (11)
83new ConfigurationProperty("enable", typeof(bool), true, ConfigurationPropertyOptions.None); 127new ConfigurationProperty("memoryLimit", typeof(int), 60, ConfigurationPropertyOptions.None); 129new ConfigurationProperty("webGarden", typeof(bool), false, ConfigurationPropertyOptions.None); 131new ConfigurationProperty("cpuMask", typeof(string), "0xffffffff", ConfigurationPropertyOptions.None); 133new ConfigurationProperty("userName", typeof(string), "machine", ConfigurationPropertyOptions.None); 135new ConfigurationProperty("password", typeof(string), "AutoGenerate", ConfigurationPropertyOptions.None); 137new ConfigurationProperty("logLevel", typeof(ProcessModelLogLevel), ProcessModelLogLevel.Errors, ConfigurationPropertyOptions.None); 146new ConfigurationProperty("comAuthenticationLevel", typeof(ProcessModelComAuthenticationLevel), ProcessModelComAuthenticationLevel.Connect, ConfigurationPropertyOptions.None); 148new ConfigurationProperty("comImpersonationLevel", typeof(ProcessModelComImpersonationLevel), ProcessModelComImpersonationLevel.Impersonate, ConfigurationPropertyOptions.None); 167new ConfigurationProperty("autoConfig", typeof(bool), false, ConfigurationPropertyOptions.None); 197new ConfigurationProperty("serverErrorMessageFile", typeof(string), String.Empty, ConfigurationPropertyOptions.None);
Configuration\ProfileGroupSettings.cs (1)
28new ConfigurationProperty(null,
Configuration\ProfilePropertySettings.cs (7)
29new ConfigurationProperty("readOnly", 34new ConfigurationProperty("serializeAs", 39new ConfigurationProperty("provider", 44new ConfigurationProperty("defaultValue", 49new ConfigurationProperty("type", 54new ConfigurationProperty("allowAnonymous", 59new ConfigurationProperty("customProviderData",
Configuration\ProfileSection.cs (5)
91new ConfigurationProperty("enabled", 103new ConfigurationProperty("providers", 108new ConfigurationProperty("properties", 113new ConfigurationProperty("inherits", 118new ConfigurationProperty("automaticSaveEnabled",
Configuration\ProfileSettings.cs (1)
56new ConfigurationProperty("custom",
Configuration\ProtocolsSection.cs (1)
29new ConfigurationProperty(null, typeof(ProtocolCollection), null, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsDefaultCollection);
Configuration\RoleManagerSection.cs (9)
95new ConfigurationProperty("enabled", 100new ConfigurationProperty("cacheRolesInCookie", 126new ConfigurationProperty("cookieRequireSSL", 131new ConfigurationProperty("cookieSlidingExpiration", 136new ConfigurationProperty("cookieProtection", 148new ConfigurationProperty("providers", 153new ConfigurationProperty("createPersistentCookie", 158new ConfigurationProperty("domain", 163new ConfigurationProperty("maxCachedResults",
Configuration\RuleSettings.cs (4)
41new ConfigurationProperty("eventName", 47new ConfigurationProperty("provider", 53new ConfigurationProperty("profile", 83new ConfigurationProperty("custom",
Configuration\SecurityPolicySection.cs (1)
31new ConfigurationProperty(null,
Configuration\SessionStateSection.cs (14)
78new ConfigurationProperty("mode", 84new ConfigurationProperty("stateConnectionString", 103new ConfigurationProperty("sqlConnectionString", 134new ConfigurationProperty("customProvider", 140new ConfigurationProperty("cookieless", 146new ConfigurationProperty("cookieName", 159new ConfigurationProperty("allowCustomSqlDatabase", 165new ConfigurationProperty("compressionEnabled", 177new ConfigurationProperty("providers", 183new ConfigurationProperty("regenerateExpiredSessionId", 189new ConfigurationProperty("partitionResolverType", 195new ConfigurationProperty("useHostingIdentity", 201new ConfigurationProperty("sessionIDManagerType", 207new ConfigurationProperty("cookieSameSite",
Configuration\SiteMapSection.cs (2)
56new ConfigurationProperty("enabled", 62new ConfigurationProperty("providers",
Configuration\SqlCacheDependencyDatabase.cs (1)
50_propPollTime = new ConfigurationProperty("pollTime",
Configuration\SqlCacheDependencySection.cs (3)
59_propEnabled = new ConfigurationProperty("enabled", 64_propPollTime = new ConfigurationProperty("pollTime", 69_propDatabases = new ConfigurationProperty("databases",
Configuration\TraceSection.cs (6)
38new ConfigurationProperty("enabled", 44new ConfigurationProperty("localOnly", 50new ConfigurationProperty("mostRecent", 56new ConfigurationProperty("pageOutput", 70new ConfigurationProperty("traceMode", 75new ConfigurationProperty("writeToDiagnosticsTrace",
Configuration\TrustLevel.cs (1)
32new ConfigurationProperty("policyFile",
Configuration\TrustSection.cs (5)
37new ConfigurationProperty("originUrl", 43new ConfigurationProperty("processRequestInApplicationTrust", 49new ConfigurationProperty("legacyCasModel", 55new ConfigurationProperty("permissionSetName", 61new ConfigurationProperty("hostSecurityPolicyResolverType",
Configuration\UrlMappingsSection.cs (2)
26new ConfigurationProperty("enabled", 32new ConfigurationProperty(null,
Configuration\WebPartsPersonalization.cs (2)
37new ConfigurationProperty("providers", 43new ConfigurationProperty("authorization",
Configuration\WebPartsPersonalizationAuthorization.cs (1)
28new ConfigurationProperty(null,
Configuration\WebPartsSection.cs (3)
76new ConfigurationProperty("enableExport", 82new ConfigurationProperty("personalization", 87new ConfigurationProperty("transformers",
Configuration\XhtmlConformanceSection.cs (1)
33new ConfigurationProperty("mode",
System.Web.Extensions (3)
Configuration\ScriptingJsonSerializationSection.cs (1)
16new ConfigurationProperty("converters",
Configuration\ScriptingScriptResourceHandlerSection.cs (2)
16new ConfigurationProperty("enableCaching", 22new ConfigurationProperty("enableCompression",
System.Web.Mobile (4)
Mobile\DeviceFiltersSection.cs (1)
22new ConfigurationProperty( null,
UI\MobileControls\MobileControlsSection.cs (3)
41new ConfigurationProperty( "allowCustomAttributes", 46new ConfigurationProperty( null, 293new ConfigurationProperty( null,
System.Web.Services (14)
System\Web\Services\Configuration\ProtocolElement.cs (1)
51readonly ConfigurationProperty name = new ConfigurationProperty("name", typeof(WebServiceProtocols), WebServiceProtocols.Unknown, ConfigurationPropertyOptions.IsKey);
System\Web\Services\Configuration\WebServicesSection.cs (11)
473readonly ConfigurationProperty conformanceWarnings = new ConfigurationProperty("conformanceWarnings", typeof(WsiProfilesElementCollection), null, ConfigurationPropertyOptions.None); 474readonly ConfigurationProperty protocols = new ConfigurationProperty("protocols", typeof(ProtocolElementCollection), null, ConfigurationPropertyOptions.None); 475readonly ConfigurationProperty serviceDescriptionFormatExtensionTypes = new ConfigurationProperty("serviceDescriptionFormatExtensionTypes", typeof(TypeElementCollection), null, ConfigurationPropertyOptions.None); 476readonly ConfigurationProperty soapEnvelopeProcessing = new ConfigurationProperty("soapEnvelopeProcessing", typeof(SoapEnvelopeProcessingElement), null, ConfigurationPropertyOptions.None); 477readonly ConfigurationProperty soapExtensionImporterTypes = new ConfigurationProperty("soapExtensionImporterTypes", typeof(TypeElementCollection), null, ConfigurationPropertyOptions.None); 478readonly ConfigurationProperty soapExtensionReflectorTypes = new ConfigurationProperty("soapExtensionReflectorTypes", typeof(TypeElementCollection), null, ConfigurationPropertyOptions.None); 479readonly ConfigurationProperty soapExtensionTypes = new ConfigurationProperty("soapExtensionTypes", typeof(SoapExtensionTypeElementCollection), null, ConfigurationPropertyOptions.None); 480readonly ConfigurationProperty soapTransportImporterTypes = new ConfigurationProperty("soapTransportImporterTypes", typeof(TypeElementCollection), null, ConfigurationPropertyOptions.None); 481readonly ConfigurationProperty wsdlHelpGenerator = new ConfigurationProperty("wsdlHelpGenerator", typeof(WsdlHelpGeneratorElement), null, ConfigurationPropertyOptions.None); 482readonly ConfigurationProperty soapServerProtocolFactoryType = new ConfigurationProperty("soapServerProtocolFactory", typeof(TypeElement), null, ConfigurationPropertyOptions.None); 483readonly ConfigurationProperty diagnostics = new ConfigurationProperty("diagnostics", typeof(DiagnosticsElement), null, ConfigurationPropertyOptions.None);
System\Web\Services\Configuration\WsdlHelpGeneratorElement.cs (1)
181readonly ConfigurationProperty href = new ConfigurationProperty("href", typeof(string), null, ConfigurationPropertyOptions.IsRequired);
System\Web\Services\Configuration\WsiProfilesElement.cs (1)
51readonly ConfigurationProperty name = new ConfigurationProperty("name", typeof(WsiProfiles), WsiProfiles.None, ConfigurationPropertyOptions.IsKey);
System.Windows.Forms (1)
winforms\Managed\System\WinForms\WindowsFormsSectionHandler.cs (1)
31s_propJitDebugging = new ConfigurationProperty("jitDebugging", typeof(bool), JitDebuggingDefault, ConfigurationPropertyOptions.None);