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