Udostępnij za pośrednictwem


CipherData.CipherValue Właściwość

Definicja

Pobiera lub ustawia <CipherValue> element.

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

Wartość właściwości

Byte[]

Tablica bajtów reprezentująca <CipherValue> element.

Wyjątki

Właściwość została ustawiona CipherValue na null.

Właściwość została ustawiona CipherValue więcej niż raz.

Przykłady

W poniższym przykładzie kodu pokazano, jak utworzyć nowe wystąpienie CipherData klasy.

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

Uwagi

Wartość to zaszyfrowane dane.

Uwaga

Element <CipherData> może mieć element podrzędny lub CipherValue albo CipherReference element podrzędny, ale nie oba. Obiekt CryptographicException jest zgłaszany, jeśli oba są przypisane do CipherData obiektu.

Dotyczy