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> 可以具有 CipherReferenceCipherValue 子元素,但不能同时具有两者。 CryptographicException如果两者都分配给 对象CipherData,则会引发 。

适用于