System.Xml.Xsl.XsltOld.Key.AddKey C# (CSharp) Method

AddKey() public method

public AddKey ( XPathNavigator root, Hashtable table ) : void
root System.Xml.XPath.XPathNavigator
table System.Collections.Hashtable
return void
        public void AddKey(XPathNavigator root, Hashtable table) {
            if (this.keyNodes == null) {
                this.keyNodes = new ArrayList();
            }
            this.keyNodes.Add(new DocumentKeyList(root, table));
        }