Base:
method
GetHashCode
System.ValueType.GetHashCode()
37 references to GetHashCode
mscorlib (1)
system\enum.cs (1)
765
return (*(bool*)pValue).
GetHashCode
();
PresentationFramework (2)
src\Framework\System\Windows\AttachedPropertyBrowsableForChildrenAttribute.cs (1)
80
return _includeDescendants.
GetHashCode
();
src\Framework\System\Windows\Controls\ValidationResult.cs (1)
127
return IsValid.
GetHashCode
() ^ ((ErrorContent == null) ? int.MinValue : ErrorContent).GetHashCode();
System (6)
compmod\system\componentmodel\BindableAttribute.cs (1)
130
return bindable.
GetHashCode
();
compmod\system\componentmodel\BrowsableAttribute.cs (1)
81
return browsable.
GetHashCode
();
compmod\system\componentmodel\DataObjectAttribute.cs (1)
50
return _isDataObject.
GetHashCode
();
compmod\system\componentmodel\DataObjectMethodAttribute.cs (1)
52
return ((int)_methodType).GetHashCode() ^ _isDefault.
GetHashCode
();
compmod\system\componentmodel\DesignOnlyAttribute.cs (1)
87
return isDesignOnly.
GetHashCode
();
compmod\system\componentmodel\SettingsBindableAttribute.cs (1)
58
return _bindable.
GetHashCode
();
System.Data (2)
fx\src\data\System\Data\Selection.cs (1)
45
return Column.GetHashCode() ^ IsDescending.
GetHashCode
();
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
557
return IsNull ? 0 : Value.
GetHashCode
();
System.Data.Entity (1)
System\Data\Common\QueryCache\LinqQueryCacheKey.cs (1)
103
combinedHash ^= _useCSharpNullComparisonBehavior.
GetHashCode
();
System.ServiceModel (2)
System\ServiceModel\Channels\WebSocketTransportSettings.cs (2)
209
^ this.CreateNotificationOnConnection.
GetHashCode
()
211
^ this.DisablePayloadMasking.
GetHashCode
()
System.Web (19)
Configuration\FileDetails.cs (1)
49
return HashCodeCombiner.CombineHashCodes(_exists.
GetHashCode
(), _fileSize.GetHashCode(),
Handlers\AssemblyResourceLoader.cs (5)
76
htmlEncoded.
GetHashCode
(),
77
forSubstitution.
GetHashCode
(),
78
enableCdn.
GetHashCode
());
80
debuggingEnabled.
GetHashCode
(),
81
secureConnection.
GetHashCode
());
UI\ClientScriptManager.cs (1)
1467
_isInclude.
GetHashCode
());
UI\DataSourceSelectArguments.cs (1)
162
_retrieveTotalRowCount.
GetHashCode
(),
UI\FilterableAttribute.cs (1)
75
return _filterable.
GetHashCode
();
UI\HtmlControlPersistable.cs (1)
39
return persistable.
GetHashCode
();
UI\NonVisualControlAttribute.cs (1)
78
return _nonVisual.
GetHashCode
();
UI\ParseChildrenAsPropertiesAttribute.cs (2)
131
return HashCodeCombiner.CombineHashCodes(_childrenAsProps.
GetHashCode
(), _childControlType.GetHashCode());
134
return HashCodeCombiner.CombineHashCodes(_childrenAsProps.
GetHashCode
(), DefaultProperty.GetHashCode());
UI\PersistChildrenAttribute.cs (1)
85
return Persist.
GetHashCode
();
UI\ThemeableAttribute.cs (1)
74
return _themeable.
GetHashCode
();
UI\WebParts\PersonalizableAttribute.cs (2)
145
return HashCodeCombiner.CombineHashCodes(_isPersonalizable.
GetHashCode
(), _scope.GetHashCode(),
146
_isSensitive.
GetHashCode
());
UI\WebParts\WebBrowsableAttribute.cs (1)
62
return _browsable.
GetHashCode
();
Util\HashCodeCombiner.cs (1)
86
AddInt(b.
GetHashCode
());
System.Web.Extensions (4)
UI\WebControls\NextPreviousPagerField.cs (4)
627
this.ShowFirstPageButton.
GetHashCode
() |
628
this.ShowLastPageButton.
GetHashCode
() |
629
this.ShowNextPageButton.
GetHashCode
() |
630
this.ShowPreviousPageButton.
GetHashCode
();