Example #1
0
 internal override void ComputeHashValue(XmlHash xmlHash)
 {
     this._hashValue = xmlHash.HashAttribute(this._localName, this._prefix, this._ns, this._value);
 }
Example #2
0
// Methods
        // computes hash value of the node and stores it in the _hashValue variable
        internal override void ComputeHashValue(XmlHash xmlHash)
        {
            Debug.Assert(_hashValue == 0);
            _hashValue = xmlHash.HashAttribute(_localName, _prefix, _ns, _value);
        }
Example #3
0
 // Methods
 // computes hash value of the node and stores it in the _hashValue variable
 internal override void ComputeHashValue( XmlHash xmlHash )
 {
     Debug.Assert( _hashValue == 0 );
     _hashValue = xmlHash.HashAttribute( _localName, _prefix, _ns, _value );
 }