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