XNodeEqualityComparer.GetHashCode(XNode) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
根據 XNode 傳回雜湊程式碼。
public:
virtual int GetHashCode(System::Xml::Linq::XNode ^ obj);
public int GetHashCode (System.Xml.Linq.XNode obj);
override this.GetHashCode : System.Xml.Linq.XNode -> int
Public Function GetHashCode (obj As XNode) As Integer
參數
傳回
Int32,包含節點之以值為基礎的雜湊程式碼。
實作
範例
下列範例會使用這個方法來取得 XML 樹狀結構的深層雜湊程式碼。
XElement xmlTree = new XElement("Root",
new XAttribute("Att1", 1),
new XAttribute("Att2", 2),
new XElement("Child1", 1),
new XElement("Child2", "some content")
);
XNodeEqualityComparer equalityComparer = new XNodeEqualityComparer();
Console.WriteLine("HashCode: {0}", equalityComparer.GetHashCode(xmlTree).ToString("X"));
xmlTree.Add(new XElement("NewChild", "new content"));
Console.WriteLine("HashCode: {0}", equalityComparer.GetHashCode(xmlTree).ToString("X"));
這個範例會產生下列輸出:
HashCode: 958CCD0
HashCode: AD26516B
備註
的 XNodeGetHashCode 實作是以節點的引用身分識別為基礎。 此方法會根據節點和所有子系的值來計算深度雜湊程式碼。 雜湊程式碼會反映所有屬性和所有子代節點。