Implemented interface member:
method
GetHashCode
System.Collections.Generic.IEqualityComparer<T>.GetHashCode(T)
4 overrides of GetHashCode
mscorlib (4)
system\stringcomparer.cs (4)
179
public override int
GetHashCode
(string obj) {
275
public override int
GetHashCode
(string obj) {
353
public override int
GetHashCode
(string obj) {
430
public override int
GetHashCode
(string obj) {
21 references to GetHashCode
mscorlib (2)
system\security\principal\ntaccount.cs (1)
166
return StringComparer.InvariantCultureIgnoreCase.
GetHashCode
(_Name);
system\stringcomparer.cs (1)
120
return
GetHashCode
(s);
System (3)
net\System\Net\DnsEndPoint.cs (1)
59
return StringComparer.InvariantCultureIgnoreCase.
GetHashCode
(ToString());
net\System\Net\IPAddress.cs (1)
692
m_HashCode = StringComparer.InvariantCultureIgnoreCase.
GetHashCode
(ToString());
net\System\URI.cs (1)
4976
return StringComparer.InvariantCultureIgnoreCase.
GetHashCode
(text);
System.Data (1)
fx\src\data\System\Data\DataTable.cs (1)
2947
return _hashCodeProvider.
GetHashCode
(name);
System.Data.Entity (2)
System\Data\Common\EntitySql\TypeResolver.cs (1)
78
return _stringComparer.
GetHashCode
(obj.Name);
System\Data\Common\Utils\TrailingSpaceComparer.cs (1)
61
return StringComparer.OrdinalIgnoreCase.
GetHashCode
(NormalizeString(obj));
System.IdentityModel (1)
System\IdentityModel\Claims\ClaimComparer.cs (1)
332
return StringComparer.OrdinalIgnoreCase.
GetHashCode
(upn);
System.ServiceModel (3)
System\ServiceModel\EndpointAddress.cs (1)
420
return StringComparer.OrdinalIgnoreCase.
GetHashCode
(uriString);
System\ServiceModel\StringUtil.cs (1)
14
randomizedStringHashingEnabled = StringComparer.InvariantCultureIgnoreCase.
GetHashCode
("The quick brown fox jumps over the lazy dog.") != 0x703e662e;
System\UriTemplateLiteralPathSegment.cs (1)
107
return StringComparer.OrdinalIgnoreCase.
GetHashCode
(this.segment);
System.Web (5)
Hosting\ApplicationManager.cs (2)
721
return comparer.
GetHashCode
(s);
1803
return (StringComparer.InvariantCultureIgnoreCase.
GetHashCode
("The quick brown fox jumps over the lazy dog.") != 0x703e662e);
Util\StringUtil.cs (2)
283
return ignoreCase ? StringComparer.InvariantCultureIgnoreCase.
GetHashCode
(s) : s.GetHashCode();
302
return StringComparer.InvariantCultureIgnoreCase.
GetHashCode
(s);
VirtualPath.cs (1)
477
return StringComparer.InvariantCultureIgnoreCase.
GetHashCode
(VirtualPathString);
System.Web.DataVisualization (1)
Common\Utilities\XmlSerializer.cs (1)
610
return (short)(hashCodeProvider.
GetHashCode
(str) + str.Length * 2);
System.Web.Mobile (2)
UI\MobileControls\MobilePage.cs (2)
1450
int pageHashCode = StringComparer.InvariantCultureIgnoreCase.
GetHashCode
(
1452
pageHashCode += StringComparer.InvariantCultureIgnoreCase.
GetHashCode
(GetType().Name);
System.Windows.Forms.DataVisualization (1)
Common\Utilities\XmlSerializer.cs (1)
610
return (short)(hashCodeProvider.
GetHashCode
(str) + str.Length * 2);