Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Provide a hash value for the XML element and all of its contained information.

Namespace: Tangosol.Run.Xml
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
public static int HashElement(
	IXmlElement xml
)

Return Value

The hash value for the XML element.

Remarks

The hash value is defined as a xor of the following:
  • the GetHashCode() from the element's value (i.e. base.GetHashCode())
  • the GetHashCode() from each attribute name
  • the GetHashCode() from each attribute value
  • the GetHashCode() from each sub-element

See Also