24 references to SelectNodes
Microsoft.Build (1)
Construction\Solution\SolutionFile.cs (1)
907XmlNodeList referenceNodes = etpProjectDocument.DocumentElement.SelectNodes("/EFPROJECT/GENERAL/References/Reference");
Microsoft.Build.Engine (1)
Shared\SolutionParser.cs (1)
656XmlNodeList referenceNodes = etpProjectDocument.DocumentElement.SelectNodes("/EFPROJECT/GENERAL/References/Reference");
Microsoft.Build.Engine.UnitTests (1)
Construction\ElementLocation_Tests.cs (1)
427var allNodes = doc.SelectNodes("//*|//@*");
Microsoft.Build.Tasks.Core (5)
BootstrapperUtil\BootstrapperBuilder.cs (2)
1767XmlNodeList stringNodes = stringsNode.SelectNodes("String"); 1781foreach (XmlNode fontNode in fontsNode.SelectNodes("Font"))
XmlPeek.cs (1)
189XmlNodeList xnl = doc.SelectNodes("/Namespaces/*[local-name() = 'Namespace']");
XmlPoke.cs (1)
175XmlNodeList xnl = doc.SelectNodes("/Namespaces/*[local-name() = 'Namespace']");
XslTransformation.cs (1)
227XmlNodeList xnl = doc.SelectNodes("/XsltParameters/*[local-name() = 'Parameter']");
Microsoft.Build.Tasks.UnitTests (6)
XmlPoke_Tests.cs (6)
74List<XmlAttribute> nodes = xmlDocument.SelectNodes(query)?.Cast<XmlAttribute>().ToList(); 91List<XmlAttribute> nodes = xmlDocument.SelectNodes(query)?.Cast<XmlAttribute>().ToList(); 108List<XmlElement> nodes = xmlDocument.SelectNodes(query)?.Cast<XmlElement>().ToList(); 132List<XmlAttribute> nodes = xmlDocument.SelectNodes(string.Format(queryTemplate, value))?.Cast<XmlAttribute>().ToList(); 213List<XmlAttribute> nodes = xmlDocument.SelectNodes(query)?.Cast<XmlAttribute>().ToList(); 302List<XmlElement> nodes = xmlDocument.SelectNodes(query)?.Cast<XmlElement>().ToList();
PresentationFramework (3)
MS\Internal\Data\XmlBindingWorker.cs (1)
521nodes = ContextNode.SelectNodes(XPath);
MS\Internal\IO\Packaging\XmlFixedPageInfo.cs (1)
135_nodeList = _pageNode.SelectNodes(glyphRunQuery);
System\Windows\Data\XmlDataProvider.cs (1)
788nodes = doc.SelectNodes(xpath);
System.Security.Cryptography.Xml (7)
System\Security\Cryptography\Xml\Reference.cs (2)
244if (transformNodes.Count != transformsElement.SelectNodes("*")!.Count) 334if (value.SelectNodes("*")!.Count != expectedChildNodeCount)
System\Security\Cryptography\Xml\Signature.cs (1)
222if (signatureElement.SelectNodes("*")!.Count != expectedChildNodes)
System\Security\Cryptography\Xml\SignedInfo.cs (1)
274if (signedInfoElement.SelectNodes("*")!.Count != expectedChildNodes)
System\Security\Cryptography\Xml\SignedXml.cs (1)
1101XmlNodeList? nodeList = document.SelectNodes(xPath);
System\Security\Cryptography\Xml\Utils.cs (1)
246XmlNodeList? nodeList = document.SelectNodes("//comment()");
System\Security\Cryptography\Xml\XmlDsigBase64Transform.cs (1)
55LoadXmlNodeListInput(((XmlDocument)obj).SelectNodes("//.")!);