次の方法で共有


CipherData.GetXml メソッド

定義

CipherData オブジェクトの XML 値を取得します。

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

戻り値

XmlElement オブジェクトの XML 情報を表す CipherData オブジェクト。

例外

CipherValue プロパティおよび CipherReference プロパティが null です。

次のコード例は、 オブジェクトの新しいインスタンスを作成する方法を 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) {}

注釈

オブジェクトの XML を出力するには、このメソッドを CipherData 使用します。

適用対象