EncryptedReference Classe
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Rappresenta la classe base astratta utilizzata nella crittografia XML dalla quale derivano le classi CipherReference, KeyReference e DataReference.
public ref class EncryptedReference abstract
public abstract class EncryptedReference
type EncryptedReference = class
Public MustInherit Class EncryptedReference
- Ereditarietà
-
EncryptedReference
- Derivato
Esempio
Nell'esempio CipherReference seguente viene usato il GetXml metodo nella classe per scrivere i valori XML nella console.
#using <System.Xml.dll>
#using <System.Security.dll>
#using <System.dll>
using namespace System;
using namespace System::Security::Cryptography::Xml;
using namespace System::Xml;
using namespace System::IO;
/// This sample used the GetXml method in the CipherReference class to
/// write the XML values for the CipherReference to the console.
[STAThread]
int main()
{
//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 = gcnew XmlDsigBase64Transform;
//Create a transform chain and add the transform to it.
TransformChain^ tc = gcnew TransformChain;
tc->Add( base64 );
//Create <CipherReference> information.
CipherReference ^ reference = gcnew CipherReference( uri,tc );
// Write the CipherReference value to the console.
Console::WriteLine( "Cipher Reference data: {0}", reference->GetXml()->OuterXml );
}
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);
}
}
}
Imports System.Security.Cryptography.Xml
Imports System.Xml
Imports System.IO
' This sample used the GetXml method in the CipherReference class
' to write the value of CipherReference to the console.
Module Module1
Sub Main()
' Create a URI string.
Dim uri As String = "http://www.woodgrovebank.com/document.xml"
' Create a Base64 transform. The input content retrieved from the
' URI should be Base64-decoded before other processing.
Dim base64 As Transform = New XmlDsigBase64Transform
Dim tc As New TransformChain
tc.Add(base64)
' Create <CipherReference> information.
Dim reference As CipherReference = New CipherReference(uri, tc)
' Write the XML for the CipherReference to the console.
Console.WriteLine("Cipher Reference: {0}", reference.GetXml().OuterXml)
End Sub
End Module
Commenti
Per altre informazioni sugli standard di crittografia XML, vedere Requisiti di crittografia XML.
Costruttori
EncryptedReference() |
Inizializza una nuova istanza della classe EncryptedReference. |
EncryptedReference(String) |
Consente di inizializzare una nuova istanza della classe EncryptedReference utilizzando l'URI (Uniform Resource Identifier) specificato. |
EncryptedReference(String, TransformChain) |
Consente di inizializzare una nuova istanza della classe EncryptedReference utilizzando l'URI (Uniform Resource Identifier) specificato e la catena delle trasformazioni. |
Proprietà
CacheValid |
Ottiene un valore che indica se la cache è valida. |
ReferenceType |
Ottiene o imposta il tipo di riferimento. |
TransformChain |
Ottiene o imposta la catena delle trasformazioni di un oggetto EncryptedReference. |
Uri |
Ottiene o imposta l'URI (Uniform Resource Identifier) di un oggetto EncryptedReference. |
Metodi
AddTransform(Transform) |
Consente di aggiungere un oggetto Transform alla catena di trasformazioni corrente di un oggetto EncryptedReference. |
Equals(Object) |
Determina se l'oggetto specificato è uguale all'oggetto corrente. (Ereditato da Object) |
GetHashCode() |
Funge da funzione hash predefinita. (Ereditato da Object) |
GetType() |
Ottiene l'oggetto Type dell'istanza corrente. (Ereditato da Object) |
GetXml() |
Restituisce la rappresentazione XML dell'oggetto EncryptedReference. |
LoadXml(XmlElement) |
Consente di caricare un elemento XML in un oggetto EncryptedReference. |
MemberwiseClone() |
Crea una copia superficiale dell'oggetto Object corrente. (Ereditato da Object) |
ToString() |
Restituisce una stringa che rappresenta l'oggetto corrente. (Ereditato da Object) |