Base:
method
GetHashCode
System.Object.GetHashCode()
20 references to GetHashCode
PresentationCore (3)
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (3)
77^ ((_foregroundBrush == null) ? 0 : _foregroundBrush.GetHashCode()) 78^ ((_backgroundBrush == null) ? 0 : _backgroundBrush.GetHashCode()) 79^ ((_textDecorations == null) ? 0 : _textDecorations.GetHashCode())
PresentationFramework (16)
src\Framework\MS\Internal\Annotations\Anchoring\PathNode.cs (1)
96return _node.GetHashCode();
src\Framework\MS\Internal\Annotations\Component\AdornerPresentationContext.cs (1)
325return (int)this._adornerLayer.GetHashCode();
src\Framework\System\Windows\Controls\ContentPresenter.cs (1)
1058EventTrace.EventProvider.TraceEvent(EventTrace.Event.WClientStringEnd, EventTrace.Keyword.KeywordGeneral, EventTrace.Level.Info, String.Format(System.Globalization.CultureInfo.InvariantCulture, "ContentPresenter.BuildVisualTree for CP {0}", container.GetHashCode()));
src\Framework\System\Windows\Controls\DataGridCellInfo.cs (1)
197((_column == null) ? 0 : _column.GetHashCode());
src\Framework\System\Windows\Controls\DataGridClipboardCellContent.cs (1)
82return ((_column == null ? 0 : _column.GetHashCode()) ^
src\Framework\System\Windows\Documents\DocumentReference.cs (1)
106DocumentsTrace.FixedDocumentSequence.IDF.Trace(string.Format("DocumentReference.GetDocument Loaded IDP {0}", idpReloaded.GetHashCode()));
src\Framework\System\Windows\Documents\FixedHighlight.cs (1)
86return _element == null ? 0 : _element.GetHashCode() + _gBeginOffset + _gEndOffset + (int)_type;
src\Framework\System\Windows\Documents\Hyperlink.cs (2)
368if (s_criticalNavigateUriProtectee.Value == d.GetHashCode() && ShouldPreventUriSpoofing) 653s_criticalNavigateUriProtectee.Value = dObject.GetHashCode();
src\Framework\System\Windows\FrameworkContentElement.cs (1)
610GetHashCode(), TypeAndName);
src\Framework\System\Windows\FrameworkElement.cs (2)
2004string TypeAndName = String.Format(CultureInfo.InvariantCulture, "[{0}]{1}({2})",GetType().Name,dp.Name,base.GetHashCode()); 2007base.GetHashCode(), TypeAndName ); // base.GetHashCode() to avoid calling a virtual, which FxCop doesn't like.
src\Framework\System\Windows\Media\Animation\Storyboard.cs (1)
195return _object.GetHashCode() ^ _property.GetHashCode();
src\Framework\System\Windows\StyleHelper.cs (2)
1835label = container.GetHashCode().ToString(System.Globalization.CultureInfo.InvariantCulture); 1875label = container.GetHashCode().ToString(System.Globalization.CultureInfo.InvariantCulture);
src\Framework\System\Windows\VisualStateManager.cs (1)
827int targetHash = _target != null ? _target.GetHashCode() : 0;
WindowsBase (1)
Base\System\Windows\DependentList.cs (1)
239hashCode += (null == DO) ? 0 : DO.GetHashCode();