internal VSXmlTransaction GetTransaction(XmlEditingScope editorTx)
        {
            VSXmlTransaction tx = null;

            if (!(_txDictionary.TryGetValue(editorTx, out tx)))
            {
                tx = new VSXmlTransaction(this, editorTx);
                _txDictionary[editorTx] = tx;
            }
            return(tx);
        }
 internal VSXmlTransaction GetTransaction(XmlEditingScope editorTx)
 {
     VSXmlTransaction tx = null;
     if (!(_txDictionary.TryGetValue(editorTx, out tx)))
     {
         tx = new VSXmlTransaction(this, editorTx);
         _txDictionary[editorTx] = tx;
     }
     return tx;
 }