Base:
method
GetHashCode
System.ValueType.GetHashCode()
63 references to GetHashCode
mscorlib (5)
system\collections\generic\equalitycomparer.cs (1)
396
return x_final.
GetHashCode
();
system\enum.cs (1)
773
return (*(int*)pValue).
GetHashCode
();
system\security\policy\netcodegroup.cs (1)
120
return Scheme.GetHashCode() + Port.
GetHashCode
();
system\threading\CancellationTokenRegistration.cs (2)
158
return m_registrationInfo.Source.GetHashCode() ^ m_registrationInfo.Index.
GetHashCode
();
160
return m_registrationInfo.Index.
GetHashCode
();
PresentationCore (2)
Core\CSharp\System\Windows\Media\TextFormatting\CharacterHit.cs (2)
122
return _firstCharacterIndex.
GetHashCode
() ^ _trailingLength.
GetHashCode
();
PresentationFramework (14)
src\Framework\MS\Internal\PtsHost\Pts.cs (8)
944
return u.
GetHashCode
() ^ v.
GetHashCode
() ^ du.
GetHashCode
() ^ dv.
GetHashCode
();
991
return u.
GetHashCode
() ^ v.
GetHashCode
();
1022
return du.
GetHashCode
() ^ dv.
GetHashCode
();
src\Framework\System\Windows\Controls\Primitives\IItemContainerGenerator.cs (2)
149
return _index.
GetHashCode
() + _offset.
GetHashCode
();
src\Framework\System\Windows\Documents\FlowNode.cs (2)
86
return _scopeId.
GetHashCode
()^_fp.
GetHashCode
();
src\Framework\System\Windows\Documents\FlowPosition.cs (1)
95
return _flowNode.GetHashCode()^_offset.
GetHashCode
();
src\Framework\System\Windows\Standard\ErrorCodes.cs (1)
146
return _value.
GetHashCode
();
System (3)
compmod\system\componentmodel\DataObjectMethodAttribute.cs (1)
52
return ((int)_methodType).
GetHashCode
() ^ _isDefault.GetHashCode();
net\System\Net\CredentialCache.cs (1)
442
m_HashCode = AuthenticationType.ToUpperInvariant().GetHashCode() + Host.ToUpperInvariant().GetHashCode() + Port.
GetHashCode
();
net\System\Net\Sockets\IPPacketInformation.cs (1)
60
return address.GetHashCode() + networkInterface.
GetHashCode
();
System.Activities (5)
System\Activities\Debugger\DocumentLocation.cs (2)
51
return this.lineNumber.Value.
GetHashCode
() ^ this.linePosition.Value.
GetHashCode
();
System\Activities\Debugger\SourceLocation.cs (2)
185
this.StartLine.
GetHashCode
() ^
186
this.StartColumn.
GetHashCode
() ^
System\Activities\Expressions\AssemblyNameEqualityComparer.cs (1)
120
hashcode ^= objArray.Length.
GetHashCode
() + 1;
System.Data (1)
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
578
return IsNull ? 0 : Value.
GetHashCode
();
System.Data.Entity (2)
System\Data\Mapping\Update\Internal\CompositeKey.cs (1)
153
return _manager.GetCliqueIdentifier(keyComponent.Identifier).
GetHashCode
();
System\Data\Mapping\ViewGeneration\Structures\CellIdBoolean.cs (1)
102
return m_index.
GetHashCode
();
System.Data.SqlXml (2)
System\Xml\Xsl\Pair.cs (2)
33
return this.left.
GetHashCode
() ^ this.right.
GetHashCode
();
System.ServiceModel (1)
System\ServiceModel\Channels\WebSocketTransportSettings.cs (1)
212
^ this.MaxPendingConnections.
GetHashCode
();
System.Web (11)
UI\DataSourceSelectArguments.cs (3)
161
return System.Web.Util.HashCodeCombiner.CombineHashCodes(_maximumRows.
GetHashCode
(),
164
_startRowIndex.
GetHashCode
(),
165
_totalRowCount.
GetHashCode
());
Util\HashCodeCombiner.cs (8)
123
Debug.Trace("HashCodeCombiner", "FileMajorPart: " + fileVersionInfo.FileMajorPart.
GetHashCode
().ToString("x", CultureInfo.InvariantCulture));
124
Debug.Trace("HashCodeCombiner", "FileMinorPart: " + fileVersionInfo.FileMinorPart.
GetHashCode
().ToString("x", CultureInfo.InvariantCulture));
125
Debug.Trace("HashCodeCombiner", "FileBuildPart: " + fileVersionInfo.FileBuildPart.
GetHashCode
().ToString("x", CultureInfo.InvariantCulture));
126
Debug.Trace("HashCodeCombiner", "FilePrivatePart: " + fileVersionInfo.FilePrivatePart.
GetHashCode
().ToString("x", CultureInfo.InvariantCulture));
127
AddInt(fileVersionInfo.FileMajorPart.
GetHashCode
());
128
AddInt(fileVersionInfo.FileMinorPart.
GetHashCode
());
129
AddInt(fileVersionInfo.FileBuildPart.
GetHashCode
());
130
AddInt(fileVersionInfo.FilePrivatePart.
GetHashCode
());
System.Web.DataVisualization (4)
Common\General\LegendColumns.cs (4)
2737
return this.Top.
GetHashCode
() + this.Bottom.
GetHashCode
() + this.Left.
GetHashCode
() + this.Right.
GetHashCode
();
System.Web.Extensions (1)
UI\WebControls\NumericPagerField.cs (1)
504
this.ButtonCount.
GetHashCode
() |
System.Windows.Forms.DataVisualization (4)
Common\General\LegendColumns.cs (4)
2737
return this.Top.
GetHashCode
() + this.Bottom.
GetHashCode
() + this.Left.
GetHashCode
() + this.Right.
GetHashCode
();
System.Workflow.ComponentModel (3)
AuthoringOM\Design\Connector.cs (1)
163
return (this.associatedDesigner.GetHashCode() ^ this.designerEdge.GetHashCode() ^ this.connectionIndex.
GetHashCode
());
AuthoringOM\Design\DesignerInterfaces.cs (1)
759
return base.GetHashCode() ^ ((AssociatedDesigner != null) ? AssociatedDesigner.GetHashCode() : 0) ^ MapToIndex().
GetHashCode
();
AuthoringOM\Design\DesignerWidgets.cs (1)
87
return base.GetHashCode() ^ this.commandID.
GetHashCode
();
WindowsBase (5)
Base\MS\Internal\Interop\ErrorCodes.cs (1)
126
return _value.
GetHashCode
();
Base\System\Windows\Generated\Int32Rect.cs (4)
164
return X.
GetHashCode
() ^
165
Y.
GetHashCode
() ^
166
Width.
GetHashCode
() ^
167
Height.
GetHashCode
();