System.Xml.Xsl.XsltOld.RootAction.InsertKey C# (CSharp) Method

InsertKey() private method

private InsertKey ( XmlQualifiedName name, int MatchKey, int UseKey ) : void
name System.Xml.XmlQualifiedName
MatchKey int
UseKey int
return void
        internal void InsertKey(XmlQualifiedName name, int MatchKey, int UseKey){
            if (this.keyList == null) {
                this.keyList = new List<Key>();
            }
            this.keyList.Add(new Key(name, MatchKey, UseKey));
        }