7 references to GetAspNetRegValue
System.Web (7)
Compilation\CompilationLock.cs (1)
47
string mutexRandomName = (string) Misc.
GetAspNetRegValue
("CompilationMutexName",
Hosting\ProcessHost.cs (2)
335
int maxPreloadConcurrency = (int)Misc.
GetAspNetRegValue
(null, "MaxPreloadConcurrency", 0);
1287
int valueInRegistry = (int)Misc.
GetAspNetRegValue
(null, "CustomLoaderEnabled", -1);
Util\AppVerifier.cs (4)
85
int valueFromRegistry = (Misc.
GetAspNetRegValue
(subKey: null, valueName: "RuntimeVerificationBehavior", defaultValue: null) as int?) ?? 0;
88
AppVerifierErrorCodeEnableAssertMask = (Misc.
GetAspNetRegValue
(subKey: null, valueName: "AppVerifierErrorCodeEnableAssertMask", defaultValue: (long)(-1)) as long?) ?? (long)(-1);
91
AppVerifierErrorCodeCollectCallStackMask = (Misc.
GetAspNetRegValue
(subKey: null, valueName: "AppVerifierErrorCodeCollectCallstackMask", defaultValue: (long)(-1)) as long?) ?? (long)(-1);
94
AppVerifierCollectCallStackMask = (CallStackCollectionBitMasks)((Misc.
GetAspNetRegValue
(subKey: null, valueName: "AppVerifierCollectCallStackMask", defaultValue: (int)(-1)) as int?) ?? (int)(-1));