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\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\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\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\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\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\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\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",