Sdílet prostřednictvím


CipherData.CipherValue Vlastnost

Definice

Získá nebo nastaví <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()

Hodnota vlastnosti

Byte[]

Bajtové pole, které představuje <CipherValue> prvek.

Výjimky

Vlastnost CipherValue byla nastavena na null.

Vlastnost CipherValue byla nastavena více než jednou.

Příklady

Následující příklad kódu ukazuje, jak vytvořit novou instanci CipherData třídy.

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

Poznámky

Hodnota jsou šifrovaná data.

Poznámka

Element <CipherData> může mít buď CipherReference podřízený prvek, CipherValue ale ne obojí. Pokud jsou k objektu přiřazeny oba objektyCipherData, vyvolá se hodnota ACryptographicException.

Platí pro