CipherData.CipherValue Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
öğesini alır veya ayarlar <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()
Özellik Değeri
öğesini temsil <CipherValue>
eden bir bayt dizisi.
Özel durumlar
CipherValue özelliği olarak null
ayarlandı.
CipherValue Özellik birden çok kez ayarlandı.
Örnekler
Aşağıdaki kod örneği, sınıfının yeni bir örneğinin CipherData nasıl oluşturulacağını gösterir.
// 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)
Açıklamalar
Değer şifrelenmiş verilerdir.
Not
öğenin <CipherData>
bir CipherReference veya CipherValue alt öğesi olabilir, ancak her ikisi birden olmayabilir. Her CryptographicException ikisi de bir CipherData nesneye atanmışsa oluşturulur.