3 writes to Uri
System.Security (3)
system\security\cryptography\xml\encryptedreference.cs (3)
38this.Uri = uri; 111this.Uri = Utils.GetAttribute(value, "URI", EncryptedXml.XmlEncNamespaceUrl); 186this.Uri = uri;
11 references to Uri
System.Security (11)
system\security\cryptography\xml\encryptedreference.cs (2)
167if (!String.IsNullOrEmpty(this.Uri)) 168referenceElement.SetAttribute("URI", this.Uri);
system\security\cryptography\xml\encryptedxml.cs (9)
219if (!Utils.GetLeaveCipherValueUnchecked() && cipherData.CipherReference.Uri == null){ 222if (cipherData.CipherReference.Uri.Length == 0) { 230} else if (cipherData.CipherReference.Uri[0] == '#') { 231string idref = Utils.ExtractIdFromLocalUri(cipherData.CipherReference.Uri); 279WebRequest request = WebRequest.Create(cipherData.CipherReference.Uri); 281throw new CryptographicException(SecurityResources.GetResourceString("Cryptography_Xml_UriNotResolved"), cipherData.CipherReference.Uri); 284throw new CryptographicException(SecurityResources.GetResourceString("Cryptography_Xml_UriNotResolved"), cipherData.CipherReference.Uri); 287throw new CryptographicException(SecurityResources.GetResourceString("Cryptography_Xml_UriNotResolved"), cipherData.CipherReference.Uri); 289decInputStream = tc.TransformToOctetStream(inputStream, m_xmlResolver, cipherData.CipherReference.Uri);