1 write to namespaceManager
System.Security (1)
system\security\cryptography\xml\transform.cs (1)
1447namespaceManager = new XmlNamespaceManager(license.NameTable);
11 references to namespaceManager
System.Security (11)
system\security\cryptography\xml\transform.cs (11)
1364encryptionMethod = encryptedGrantList[i].SelectSingleNode("//r:encryptedGrant/enc:EncryptionMethod", namespaceManager) as XmlElement; 1365keyInfo = encryptedGrantList[i].SelectSingleNode("//r:encryptedGrant/dsig:KeyInfo", namespaceManager) as XmlElement; 1366cipherData = encryptedGrantList[i].SelectSingleNode("//r:encryptedGrant/enc:CipherData", namespaceManager) as XmlElement; 1448namespaceManager.AddNamespace("dsig", SignedXml.XmlDsigNamespaceUrl); 1449namespaceManager.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl); 1450namespaceManager.AddNamespace("r", NamespaceUriCore); 1457currentIssuerContext = Context.SelectSingleNode("ancestor-or-self::r:issuer[1]", namespaceManager) as XmlElement; 1461signatureNode = currentIssuerContext.SelectSingleNode("descendant-or-self::dsig:Signature[1]", namespaceManager) as XmlElement; 1466currentLicenseContext = currentIssuerContext.SelectSingleNode("ancestor-or-self::r:license[1]", namespaceManager) as XmlElement; 1470XmlNodeList issuerList = currentLicenseContext.SelectNodes("descendant-or-self::r:license[1]/r:issuer", namespaceManager); 1482XmlNodeList encryptedGrantList = currentLicenseContext.SelectNodes("/r:license/r:grant/r:encryptedGrant", namespaceManager);