Пример #1
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.HashCharacterNode( (XmlNodeType)(int)_nodeType, _value );
 }
Пример #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.HashCharacterNode((XmlNodeType)(int)_nodeType, _value);
        }
Пример #3
0
 internal override void ComputeHashValue(XmlHash xmlHash)
 {
     this._hashValue = xmlHash.HashCharacterNode((XmlNodeType)this._nodeType, this._value);
 }