EncryptedReference Class
.NET Framework 3.5
Represents the abstract base class used in XML encryption from which the CipherReference, KeyReference, and DataReference classes derive.
Assembly: System.Security (in System.Security.dll)
The following code example uses the GetXml method in the CipherReference class to write the XML values to the console.
using System; using System.Security.Cryptography.Xml; using System.Xml; using System.IO; /// This sample used the GetXml method in the CipherReference class to /// write the XML values for the CipherReference to the console. namespace CipherReference2 { class CipherReference2 { [STAThread] static void Main(string[] args) { //Create a URI string. String uri = "http://www.woodgrovebank.com/document.xml"; // Create a Base64 transform. The input content retrieved from the // URI should be Base64-decoded before other processing. Transform base64 = new XmlDsigBase64Transform(); //Create a transform chain and add the transform to it. TransformChain tc = new TransformChain(); tc.Add(base64); //Create <CipherReference> information. CipherReference reference = new CipherReference(uri, tc); // Write the CipherReference value to the console. Console.WriteLine("Cipher Reference data: {0}", reference.GetXml().OuterXml); } } }
System.Object
System.Security.Cryptography.Xml.EncryptedReference
System.Security.Cryptography.Xml.CipherReference
System.Security.Cryptography.Xml.DataReference
System.Security.Cryptography.Xml.KeyReference
System.Security.Cryptography.Xml.EncryptedReference
System.Security.Cryptography.Xml.CipherReference
System.Security.Cryptography.Xml.DataReference
System.Security.Cryptography.Xml.KeyReference
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.