다음을 통해 공유


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 개체입니다.

적용 대상