Sdílet prostřednictvím


CipherData.GetXml Metoda

Definice

Získá xml hodnoty pro CipherData objekt.

public:
 System::Xml::XmlElement ^ GetXml();
public System.Xml.XmlElement GetXml ();
member this.GetXml : unit -> System.Xml.XmlElement
Public Function GetXml () As XmlElement

Návraty

Objekt XmlElement , který představuje informace XML pro CipherData objekt.

Výjimky

Vlastnost CipherValue a CipherReference vlastnost jsou null.

Příklady

Následující příklad kódu ukazuje, jak vytvořit novou instanci objektu CipherData .

// Create a new CipherData object.
CipherData^ cipher = gcnew CipherData();
// Assign a byte array to be the CipherValue. This is a
// byte array representing encrypted data.
cipher->CipherValue = gcnew array<Byte>(8);
// Create a new CipherData object.
CipherData cd = new CipherData();
// Assign a byte array to be the CipherValue. This is a byte array representing encrypted data.
cd.CipherValue = new byte[8];
' Create a new CipherData object.
Dim cd As New CipherData
' Assign a byte array to the CipherValue.
cd.CipherValue = New Byte(7) {}

Poznámky

Tato metoda slouží k výstupu XML pro CipherData objekt.

Platí pro