41 references to XmlEncNamespaceUrl
System.Security (41)
system\security\cryptography\xml\cipherdata.cs (3)
81XmlElement cipherDataElement = (XmlElement)document.CreateElement("CipherData", EncryptedXml.XmlEncNamespaceUrl); 83XmlElement cipherValueElement = document.CreateElement("CipherValue", EncryptedXml.XmlEncNamespaceUrl); 100nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl);
system\security\cryptography\xml\encrypteddata.cs (7)
30nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl); 33this.Id = Utils.GetAttribute(value, "Id", EncryptedXml.XmlEncNamespaceUrl); 34this.Type = Utils.GetAttribute(value, "Type", EncryptedXml.XmlEncNamespaceUrl); 35this.MimeType = Utils.GetAttribute(value, "MimeType", EncryptedXml.XmlEncNamespaceUrl); 36this.Encoding = Utils.GetAttribute(value, "Encoding", EncryptedXml.XmlEncNamespaceUrl); 87XmlElement encryptedDataElement = (XmlElement) document.CreateElement("EncryptedData", EncryptedXml.XmlEncNamespaceUrl); 114XmlElement encryptionPropertiesElement = document.CreateElement("EncryptionProperties", EncryptedXml.XmlEncNamespaceUrl);
system\security\cryptography\xml\encryptedkey.cs (10)
73nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl); 76this.Id = Utils.GetAttribute(value, "Id", EncryptedXml.XmlEncNamespaceUrl); 77this.Type = Utils.GetAttribute(value, "Type", EncryptedXml.XmlEncNamespaceUrl); 78this.MimeType = Utils.GetAttribute(value, "MimeType", EncryptedXml.XmlEncNamespaceUrl); 79this.Encoding = Utils.GetAttribute(value, "Encoding", EncryptedXml.XmlEncNamespaceUrl); 80this.Recipient = Utils.GetAttribute(value, "Recipient", EncryptedXml.XmlEncNamespaceUrl); 160XmlElement encryptedKeyElement = (XmlElement) document.CreateElement("EncryptedKey", EncryptedXml.XmlEncNamespaceUrl); 189XmlElement encryptionPropertiesElement = document.CreateElement("EncryptionProperties", EncryptedXml.XmlEncNamespaceUrl); 199XmlElement referenceListElement = document.CreateElement("ReferenceList", EncryptedXml.XmlEncNamespaceUrl); 208XmlElement carriedKeyNameElement = (XmlElement) document.CreateElement("CarriedKeyName", EncryptedXml.XmlEncNamespaceUrl);
system\security\cryptography\xml\encryptedreference.cs (6)
95XmlElement referenceElement = document.CreateElement(ReferenceType, EncryptedXml.XmlEncNamespaceUrl); 111this.Uri = Utils.GetAttribute(value, "URI", EncryptedXml.XmlEncNamespaceUrl); 166XmlElement referenceElement = document.CreateElement(ReferenceType, EncryptedXml.XmlEncNamespaceUrl); 172referenceElement.AppendChild(this.TransformChain.GetXml(document, EncryptedXml.XmlEncNamespaceUrl)); 182string uri = Utils.GetAttribute(value, "URI", EncryptedXml.XmlEncNamespaceUrl); 190nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl);
system\security\cryptography\xml\encryptedtype.cs (9)
171XmlElement encryptionMethodElement = (XmlElement) document.CreateElement("EncryptionMethod", EncryptedXml.XmlEncNamespaceUrl); 176XmlElement keySizeElement = document.CreateElement("KeySize", EncryptedXml.XmlEncNamespaceUrl); 188nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl); 191m_algorithm = Utils.GetAttribute(encryptionMethodElement, "Algorithm", EncryptedXml.XmlEncNamespaceUrl); 216if (elementProperty.LocalName != "EncryptionProperty" || elementProperty.NamespaceURI != EncryptedXml.XmlEncNamespaceUrl) 236if (value.LocalName != "EncryptionProperty" || value.NamespaceURI != EncryptedXml.XmlEncNamespaceUrl) 265if (value.LocalName != "EncryptionProperty" || value.NamespaceURI != EncryptedXml.XmlEncNamespaceUrl) 270m_id = Utils.GetAttribute(value, "Id", EncryptedXml.XmlEncNamespaceUrl); 271m_target = Utils.GetAttribute(value, "Target", EncryptedXml.XmlEncNamespaceUrl);
system\security\cryptography\xml\encryptedxml.cs (2)
356nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl); 633nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl);
system\security\cryptography\xml\transform.cs (4)
1224m_nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl); 1234m_nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl); 1287encryptedDataElement.NamespaceURI == EncryptedXml.XmlEncNamespaceUrl) { 1449namespaceManager.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl);