57 references to
PresentationBuildTasks (2)
Microsoft\Build\Tasks\Windows\GenerateTemporaryTargetAssembly.cs (2)
629if (root.ChildNodes[i] is XmlElement nodeGroup && string.Equals(nodeGroup.Name, groupName, StringComparison.OrdinalIgnoreCase)) 640if (nodeGroup.ChildNodes[j] is XmlElement nodeItem && string.Equals(nodeItem.Name, sItemName, StringComparison.OrdinalIgnoreCase))
PresentationFramework (8)
MS\Internal\Data\XmlDataCollection.cs (5)
77if (this[i] != nodes[i]) 95if (this[i] != nodes[i]) 100if (this[i] == nodes[j]) 111Items.Insert(i, nodes[i]); 139Items.Insert(i, nodes[i]);
MS\Internal\Globalization\BamlTreeUpdater.cs (2)
423root.ChildNodes[i], 570child.ChildNodes[i],
MS\Internal\IO\Packaging\XmlFixedPageInfo.cs (1)
65GlyphRunList[position] = new XmlGlyphRunInfo(NodeList[position]);
PresentationFramework-SystemXml (2)
SystemXmlExtension.cs (2)
152if (node.ChildNodes[i].NodeType == XmlNodeType.Text) 154value += 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)
68XmlNode currentNode = (XmlNode)elementList[index]!; 69XmlNode currentNodeCanonical = (XmlNode)elementListCanonical[index]!; 74elementList.Add(childNodes[i]); 75elementListCanonical.Add(childNodesCanonical[i]); 77if (Utils.NodeInList(childNodes[i], nodeList)) 79MarkNodeAsIncluded(childNodesCanonical[i]!); 82XmlAttributeCollection? attribNodes = childNodes[i]!.Attributes; 89MarkNodeAsIncluded(childNodesCanonical[i]!.Attributes!.Item(j)!);
System\Security\Cryptography\Xml\ExcCanonicalXml.cs (8)
78XmlNode currentNode = (XmlNode)elementList[index]!; 79XmlNode currentNodeCanonical = (XmlNode)elementListCanonical[index]!; 84elementList.Add(childNodes[i]); 85elementListCanonical.Add(childNodesCanonical[i]); 87if (Utils.NodeInList(childNodes[i], nodeList)) 89MarkNodeAsIncluded(childNodesCanonical[i]!); 92XmlAttributeCollection? attribNodes = childNodes[i]!.Attributes; 99MarkNodeAsIncluded(childNodesCanonical[i]!.Attributes!.Item(j)!);
System\Security\Cryptography\Xml\Utils.cs (1)
257XmlNode rootNode = (XmlNode)elementList[index]!;
System\Security\Cryptography\Xml\XmlDsigEnvelopedSignatureTransform.cs (2)
167signatureList[_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]!);
System.ServiceModel.Primitives (14)
System\IdentityModel\Tokens\GenericXmlSecurityKeyIdentifierClause.cs (2)
68childrenStatus = childrenStatus & CompareNodes(originalNode.ChildNodes[i], newNode.ChildNodes[i]);
System\ServiceModel\Security\WSTrust.cs (7)
242XmlElement child = (rstXml.ChildNodes[i] as XmlElement); 344XmlElement child = (rstrXml.ChildNodes[i] as XmlElement); 449XmlElement element = rstr.RequestSecurityTokenResponseXml.ChildNodes[i] as XmlElement; 495XmlElement elem = rootElement.ChildNodes[i] as XmlElement; 535XmlElement element = rootElement.ChildNodes[i] as XmlElement; 562XmlElement elem = rstr.RequestSecurityTokenResponseXml.ChildNodes[i] as XmlElement; 814XmlElement child = rstrXml.ChildNodes[i] as XmlElement;
System\ServiceModel\Security\WSTrustFeb2005.cs (3)
102XmlElement child = rstrXml.ChildNodes[i] as XmlElement; 144XmlElement child = (rstrXml.ChildNodes[i] as XmlElement); 163XmlElement child = (rstXml.ChildNodes[i] as XmlElement);
System\ServiceModel\Security\XmlHelper.cs (2)
58XmlNode child = parent.ChildNodes[i]; 90XmlNode child = parent.ChildNodes[i];