Base:
method
GetHashCode
System.ValueType.GetHashCode()
32 references to GetHashCode
mscorlib (3)
system\security\cryptography\RSAEncryptionPadding.cs (1)
89return CombineHashCodes(_mode.GetHashCode(), _oaepHashAlgorithm.GetHashCode());
system\security\cryptography\RSASignaturePadding.cs (1)
54return _mode.GetHashCode();
system\security\policy\filecodegroup.cs (1)
200return base.GetHashCode() + m_access.GetHashCode();
PresentationCore (2)
Core\CSharp\System\Windows\Duration.cs (1)
496return _durationType.GetHashCode() + 17;
Core\CSharp\System\Windows\Media\Animation\KeyTime.cs (1)
199return _type.GetHashCode();
PresentationFramework (3)
src\Framework\System\Windows\Controls\Primitives\CustomPopupPlacement.cs (1)
97return _primaryAxis.GetHashCode() ^ _point.GetHashCode();
src\Framework\System\Windows\Controls\Primitives\HierarchicalVirtualizationConstraints.cs (1)
131return (_cacheLength.GetHashCode() ^ _cacheLengthUnit.GetHashCode() ^ _viewport.GetHashCode());
src\Framework\System\Windows\DependencyPropertyHelper.cs (1)
115return _baseValueSource.GetHashCode();
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\ConnectorRouter.cs (1)
1225return this.point1.GetHashCode() ^ this.point2.GetHashCode() ^ Orientation.GetHashCode();
System.AddIn (1)
System\Addin\Hosting\QualificationDataItem.cs (1)
58return m_type.GetHashCode() ^ (Name == null ? 0 : Name.GetHashCode());
System.Core (1)
System\Security\Cryptography\CngProperty.cs (1)
130int hashCode = Name.GetHashCode() ^ Options.GetHashCode();
System.Data.Entity (3)
System\Data\Common\QueryCache\EntityClientCacheKey.cs (1)
69_hashCode = _commandType.GetHashCode() ^
System\Data\Common\QueryCache\EntitySqlQueryCacheKey.cs (1)
91_mergeOption.GetHashCode();
System\Data\Common\QueryCache\LinqQueryCacheKey.cs (1)
91_mergeOption.GetHashCode();
System.Data.Linq (1)
SqlClient\SqlTypeSystemProvider.cs (1)
697return hash ^ this.sqlDbType.GetHashCode() ^ (this.size ?? 0) ^ (this.precision) ^ (this.scale << 8);
System.IdentityModel (1)
System\IdentityModel\Tokens\SamlAuthorizationDecisionClaimResource.cs (1)
100return (this.resource.GetHashCode() ^ this.accessDecision.GetHashCode());
System.IO.Log (1)
System\IO\Log\PolicyUnit.cs (1)
53return (this.type.GetHashCode() ^
System.ServiceModel (1)
System\ServiceModel\Channels\WebSocketTransportSettings.cs (1)
208int hashcode = this.TransportUsage.GetHashCode()
System.Web (5)
UI\PersistenceTypeAttribute.cs (1)
84return Mode.GetHashCode();
UI\TemplateInstanceAttribute.cs (1)
66return _instances.GetHashCode();
UI\WebControls\FontUnit.cs (1)
250return HashCodeCombiner.CombineHashCodes(type.GetHashCode(), value.GetHashCode());
UI\WebControls\Unit.cs (1)
190return HashCodeCombiner.CombineHashCodes(type.GetHashCode(), value.GetHashCode());
UI\WebParts\PersonalizableAttribute.cs (1)
145return HashCodeCombiner.CombineHashCodes(_isPersonalizable.GetHashCode(), _scope.GetHashCode(),
System.Web.Extensions (2)
UI\WebControls\NextPreviousPagerField.cs (1)
618this.ButtonType.GetHashCode() |
UI\WebControls\NumericPagerField.cs (1)
505this.ButtonType.GetHashCode() |
System.Windows.Forms (2)
winforms\Managed\System\WinForms\Design\ToolStripDesignerAvailabilityAttribute.cs (1)
46return visibility.GetHashCode();
winforms\Managed\System\WinForms\DockingAttribute.cs (1)
79return dockingBehavior.GetHashCode();
System.Workflow.Activities (1)
Rules\RuleValidation.cs (1)
2573return this.direction.GetHashCode() ^ this.type.GetHashCode();
System.Workflow.ComponentModel (2)
AuthoringOM\Design\Connector.cs (2)
163return (this.associatedDesigner.GetHashCode() ^ this.designerEdge.GetHashCode() ^ this.connectionIndex.GetHashCode()); 2775return this.point1.GetHashCode() ^ this.point2.GetHashCode() ^ Orientation.GetHashCode();
WindowsBase (2)
Base\System\ComponentModel\PropertyFilterAttribute.cs (1)
65return _filter.GetHashCode();
Base\System\ComponentModel\SortDescription.cs (1)
137int result = Direction.GetHashCode();