46 references to
Microsoft.Build.Tasks.Core (3)
XmlPeek.cs (1)
192XmlNode xn = xnl[i];
XmlPoke.cs (1)
179XmlNode xn = xnl[i];
XslTransformation.cs (1)
231XmlNode xn = xnl[i];
PresentationBuildTasks (2)
Microsoft\Build\Tasks\Windows\GenerateTemporaryTargetAssembly.cs (2)
630if (root.ChildNodes[i] is XmlElement nodeGroup && string.Equals(nodeGroup.Name, groupName, StringComparison.OrdinalIgnoreCase)) 641if (nodeGroup.ChildNodes[j] is XmlElement nodeItem && string.Equals(nodeItem.Name, sItemName, StringComparison.OrdinalIgnoreCase))
PresentationFramework (8)
MS\Internal\Data\XmlDataCollection.cs (5)
78if (this[i] != nodes[i]) 96if (this[i] != nodes[i]) 101if (this[i] == nodes[j]) 112Items.Insert(i, nodes[i]); 140Items.Insert(i, nodes[i]);
MS\Internal\Globalization\BamlTreeUpdater.cs (2)
424root.ChildNodes[i], 571child.ChildNodes[i],
MS\Internal\IO\Packaging\XmlFixedPageInfo.cs (1)
66GlyphRunList[position] = new XmlGlyphRunInfo(NodeList[position]);
PresentationFramework-SystemXml (2)
SystemXmlExtension.cs (2)
153if (node.ChildNodes[i].NodeType == XmlNodeType.Text) 155value += node.ChildNodes[i].Value;
System.Private.Xml (3)
System\Xml\Dom\XPathNodeList.cs (2)
112_valid = (_list[_index] != null); 122return _list[_index];
System\Xml\Schema\Parser.cs (1)
246markup[i] = list[i];
System.Security.Cryptography.Xml (28)
System\Security\Cryptography\Xml\CanonicalXml.cs (8)
77XmlNode currentNode = (XmlNode)elementList[index]!; 78XmlNode currentNodeCanonical = (XmlNode)elementListCanonical[index]!; 83elementList.Add(childNodes[i]); 84elementListCanonical.Add(childNodesCanonical[i]); 86if (Utils.NodeInList(childNodes[i], nodeList)) 88MarkNodeAsIncluded(childNodesCanonical[i]!); 91XmlAttributeCollection? attribNodes = childNodes[i]!.Attributes; 98MarkNodeAsIncluded(childNodesCanonical[i]!.Attributes!.Item(j)!);
System\Security\Cryptography\Xml\ExcCanonicalXml.cs (8)
87XmlNode currentNode = (XmlNode)elementList[index]!; 88XmlNode currentNodeCanonical = (XmlNode)elementListCanonical[index]!; 93elementList.Add(childNodes[i]); 94elementListCanonical.Add(childNodesCanonical[i]); 96if (Utils.NodeInList(childNodes[i], nodeList)) 98MarkNodeAsIncluded(childNodesCanonical[i]!); 101XmlAttributeCollection? attribNodes = childNodes[i]!.Attributes; 108MarkNodeAsIncluded(childNodesCanonical[i]!.Attributes!.Item(j)!);
System\Security\Cryptography\Xml\Utils.cs (1)
269XmlNode rootNode = (XmlNode)elementList[index]!;
System\Security\Cryptography\Xml\XmlDsigEnvelopedSignatureTransform.cs (2)
173signatureList[_signaturePosition - 1]!.ParentNode!.RemoveChild(signatureList[_signaturePosition - 1]!);
System\Security\Cryptography\Xml\XmlLicenseTransform.cs (9)
59encryptionMethod = encryptedGrantList[i]!.SelectSingleNode("//r:encryptedGrant/enc:EncryptionMethod", _namespaceManager!) as XmlElement; 60keyInfo = encryptedGrantList[i]!.SelectSingleNode("//r:encryptedGrant/dsig:KeyInfo", _namespaceManager!) as XmlElement; 61cipherData = encryptedGrantList[i]!.SelectSingleNode("//r:encryptedGrant/enc:CipherData", _namespaceManager!) as XmlElement; 91encryptedGrantList[i]!.ParentNode!.InnerXml = clearContent; 164if (issuerList[i]! == currentIssuerContext) 167if ((issuerList[i]!.LocalName == Consts.ElementIssuer) && 168(issuerList[i]!.NamespaceURI == Consts.NamespaceUriCore)) 169issuerList[i]!.ParentNode!.RemoveChild(issuerList[i]!);