コード例 #1
0
ファイル: XmlDiffNodes.cs プロジェクト: Podracer/DAE-notepad
 // 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.HashNamespace( _prefix, _namespaceURI );
 }
コード例 #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.HashNamespace(_prefix, _namespaceURI);
        }
コード例 #3
0
 internal override void ComputeHashValue(XmlHash xmlHash)
 {
     this._hashValue = xmlHash.HashNamespace(this._prefix, this._namespaceURI);
 }