public bool MatchesKey(XPathNavigator nav, IStaticXsltContext staticContext, string name, string value) { XmlQualifiedName name2 = XslNameUtil.FromString(name, staticContext); KeyIndexTable indexTable = this.GetIndexTable(name2); return(indexTable.Matches(nav, value, this)); }
public bool MatchesKey(XPathNavigator nav, IStaticXsltContext staticContext, string name, string value) { QName qname = XslNameUtil.FromString(name, staticContext); KeyIndexTable table = GetIndexTable(qname); return(table.Matches(nav, value, this)); }