internal override void ComputeHashValue(XmlHash xmlHash)
 {
     this._hashValue = xmlHash.HashDocumentType(this._name, this._publicId, this._systemId, this._subset);
 }
Beispiel #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.HashDocumentType(_name, _publicId, _systemId, _subset);
        }
Beispiel #3
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.HashDocumentType( _name, _publicId, _systemId, _subset );
 }