Bagikan melalui


CipherData.CipherValue Properti

Definisi

Mendapatkan atau mengatur <CipherValue> elemen .

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()

Nilai Properti

Byte[]

Array byte yang mewakili <CipherValue> elemen .

Pengecualian

Properti CipherValue diatur ke null.

Properti CipherValue diatur lebih dari sekali.

Contoh

Contoh kode berikut menunjukkan cara membuat instans CipherData baru kelas.

// 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)

Keterangan

Nilainya adalah data terenkripsi.

Catatan

Elemen <CipherData> dapat memiliki CipherReference elemen atau turunan CipherValue , tetapi tidak keduanya. CryptographicException dilemparkan jika keduanya ditetapkan ke CipherData objek.

Berlaku untuk