41 references to XmlEncNamespaceUrl
System.Security.Cryptography.Xml (41)
System\Security\Cryptography\Xml\CipherData.cs (3)
80XmlElement cipherDataElement = (XmlElement)document.CreateElement("CipherData", EncryptedXml.XmlEncNamespaceUrl); 83XmlElement cipherValueElement = document.CreateElement("CipherValue", EncryptedXml.XmlEncNamespaceUrl); 107nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl);
System\Security\Cryptography\Xml\CipherReference.cs (4)
58XmlElement referenceElement = document.CreateElement(ReferenceType, EncryptedXml.XmlEncNamespaceUrl); 64referenceElement.AppendChild(TransformChain.GetXml(document, EncryptedXml.XmlEncNamespaceUrl)); 79string? uri = Utils.GetAttribute(value, "URI", EncryptedXml.XmlEncNamespaceUrl); 84nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl);
System\Security\Cryptography\Xml\EncryptedData.cs (7)
21nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl); 24Id = Utils.GetAttribute(value, "Id", EncryptedXml.XmlEncNamespaceUrl); 25Type = Utils.GetAttribute(value, "Type", EncryptedXml.XmlEncNamespaceUrl); 26MimeType = Utils.GetAttribute(value, "MimeType", EncryptedXml.XmlEncNamespaceUrl); 27Encoding = Utils.GetAttribute(value, "Encoding", EncryptedXml.XmlEncNamespaceUrl); 83XmlElement encryptedDataElement = (XmlElement)document.CreateElement("EncryptedData", EncryptedXml.XmlEncNamespaceUrl); 111XmlElement encryptionPropertiesElement = document.CreateElement("EncryptionProperties", EncryptedXml.XmlEncNamespaceUrl);
System\Security\Cryptography\Xml\EncryptedKey.cs (10)
60nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl); 63Id = Utils.GetAttribute(value, "Id", EncryptedXml.XmlEncNamespaceUrl); 64Type = Utils.GetAttribute(value, "Type", EncryptedXml.XmlEncNamespaceUrl); 65MimeType = Utils.GetAttribute(value, "MimeType", EncryptedXml.XmlEncNamespaceUrl); 66Encoding = Utils.GetAttribute(value, "Encoding", EncryptedXml.XmlEncNamespaceUrl); 67Recipient = Utils.GetAttribute(value, "Recipient", EncryptedXml.XmlEncNamespaceUrl); 158XmlElement encryptedKeyElement = (XmlElement)document.CreateElement("EncryptedKey", EncryptedXml.XmlEncNamespaceUrl); 188XmlElement encryptionPropertiesElement = document.CreateElement("EncryptionProperties", EncryptedXml.XmlEncNamespaceUrl); 200XmlElement referenceListElement = document.CreateElement("ReferenceList", EncryptedXml.XmlEncNamespaceUrl); 211XmlElement carriedKeyNameElement = (XmlElement)document.CreateElement("CarriedKeyName", EncryptedXml.XmlEncNamespaceUrl);
System\Security\Cryptography\Xml\EncryptedReference.cs (2)
94XmlElement referenceElement = document.CreateElement(ReferenceType, EncryptedXml.XmlEncNamespaceUrl); 116string? uri = Utils.GetAttribute(value, "URI", EncryptedXml.XmlEncNamespaceUrl);
System\Security\Cryptography\Xml\EncryptedXml.cs (2)
336nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl); 680nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl);
System\Security\Cryptography\Xml\EncryptionMethod.cs (4)
69XmlElement encryptionMethodElement = (XmlElement)document.CreateElement("EncryptionMethod", EncryptedXml.XmlEncNamespaceUrl); 75XmlElement keySizeElement = document.CreateElement("KeySize", EncryptedXml.XmlEncNamespaceUrl); 90nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl); 93_algorithm = Utils.GetAttribute(encryptionMethodElement, "Algorithm", EncryptedXml.XmlEncNamespaceUrl);
System\Security\Cryptography\Xml\EncryptionProperty.cs (5)
26if (elementProperty.LocalName != "EncryptionProperty" || elementProperty.NamespaceURI != EncryptedXml.XmlEncNamespaceUrl) 51if (value.LocalName != "EncryptionProperty" || value.NamespaceURI != EncryptedXml.XmlEncNamespaceUrl) 89if (value.LocalName != "EncryptionProperty" || value.NamespaceURI != EncryptedXml.XmlEncNamespaceUrl) 94_id = Utils.GetAttribute(value, "Id", EncryptedXml.XmlEncNamespaceUrl); 95_target = Utils.GetAttribute(value, "Target", EncryptedXml.XmlEncNamespaceUrl);
System\Security\Cryptography\Xml\XmlDecryptionTransform.cs (3)
158_nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl); 172_nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl); 234encryptedDataElement.NamespaceURI == EncryptedXml.XmlEncNamespaceUrl)
System\Security\Cryptography\Xml\XmlLicenseTransform.cs (1)
139_namespaceManager.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl);