11 references to GetNonRandomizedHashCode
System.Web (11)
Compilation\BuildManagerHost.cs (1)
669
hashCodeCombiner.AddInt(StringUtil.
GetNonRandomizedHashCode
((string)_stringDictionary[virtualDependency]));
Compilation\CompilationLock.cs (1)
172
int hashCode = StringUtil.
GetNonRandomizedHashCode
("CompilationLock" + HttpRuntime.AppDomainAppId.ToLower(CultureInfo.InvariantCulture));
Configuration\BuildProvider.cs (1)
73
return HashCodeCombiner.CombineHashCodes(StringUtil.
GetNonRandomizedHashCode
(Extension.ToLower(CultureInfo.InvariantCulture)),
Configuration\FolderLevelBuildProvider.cs (1)
64
return HashCodeCombiner.CombineHashCodes(StringUtil.
GetNonRandomizedHashCode
(Name.ToLower(CultureInfo.InvariantCulture)),
Hosting\ApplicationHost.cs (1)
52
String appId = StringUtil.
GetNonRandomizedHashCode
(String.Concat(virtualDir, physicalDir)).ToString("x");
HttpApplication.cs (1)
2796
UnsafeNativeMethods.EndPrefetchActivity((uint)StringUtil.
GetNonRandomizedHashCode
(HttpRuntime.AppDomainAppId));
UI\Page.cs (2)
1539
int pageHashCode = StringUtil.
GetNonRandomizedHashCode
(TemplateSourceDirectory, ignoreCase:true);
1540
pageHashCode += StringUtil.
GetNonRandomizedHashCode
(GetType().Name, ignoreCase:true);
UI\PartialCachingControl.cs (1)
848
hashCodeCombiner.AddInt(StringUtil.
GetNonRandomizedHashCode
(_varyByCustom));
Util\HashCodeCombiner.cs (2)
106
AddInt(StringUtil.
GetNonRandomizedHashCode
(s, ignoreCase:true));
134
AddInt(StringUtil.
GetNonRandomizedHashCode
(fileContentHashKey));