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