다음을 통해 공유


CipherData.CipherValue 속성

정의

<CipherValue> 요소를 가져오거나 설정합니다.

public:
 property cli::array <System::Byte> ^ CipherValue { cli::array <System::Byte> ^ get(); void set(cli::array <System::Byte> ^ value); };
public byte[]? CipherValue { get; set; }
public byte[] CipherValue { get; set; }
member this.CipherValue : byte[] with get, set
Public Property CipherValue As Byte()

속성 값

Byte[]

<CipherValue> 요소를 나타내는 바이트 배열입니다.

예외

CipherValue 속성이 null로 설정된 경우

CipherValue 속성이 두 번 이상 설정된 경우

예제

다음 코드 예제에서는 CipherData 클래스의 새 인스턴스를 만드는 방법을 보여 줍니다.

// Create a new CipherData object using a byte array to represent encrypted data.
array<Byte>^sampledata = gcnew array<Byte>(8);
CipherData ^ cd = gcnew CipherData( sampledata );
// Create a new CipherData object using a byte array to represent encrypted data.
Byte[] sampledata = new byte[8];
CipherData cd = new CipherData(sampledata);

    ' Create a new CipherData object using a byte array to represent encrypted data.
Dim sampledata(7) As Byte
    Dim cd As New CipherData(sampledata)

설명

값은 암호화 된 데이터입니다.

참고

<CipherData> 요소 중 하나를 포함할 수 있습니다를 CipherReference 또는 CipherValue 자식 요소가 하나만 있습니다. A CryptographicException 둘 다에 할당 된 경우 throw 되는 CipherData 개체입니다.

적용 대상