Exemplo n.º 1
0
 // Methods
 // computes the hash value of the node and saves it into the _hashValue field
 internal override void ComputeHashValue( XmlHash xmlHash )
 {
     Debug.Assert( _hashValue == 0 );
     _hashValue = xmlHash.HashPI( Name, Value );
 }
Exemplo n.º 2
0
// Methods
        // computes the hash value of the node and saves it into the _hashValue field
        internal override void ComputeHashValue(XmlHash xmlHash)
        {
            Debug.Assert(_hashValue == 0);
            _hashValue = xmlHash.HashPI(Name, Value);
        }
Exemplo n.º 3
0
 internal override void ComputeHashValue(XmlHash xmlHash)
 {
     this._hashValue = xmlHash.HashPI(this.Name, this.Value);
 }