The raw data of the certificate as a byte array.

Namespace: vCards
Assembly: ICalVCard (in ICalVCard.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public byte[] Data { get; set; }
Visual Basic
Public Property Data As Byte()
	Get
	Set
Visual C++
public:
property array<unsigned char>^ Data {
	array<unsigned char>^ get ();
	void set (array<unsigned char>^ value);
}

Remarks

Most certificates consist of 8-bit binary data that is encoded into a text format using BASE64 or a similar system. This property provides access to the computer-friendly, decoded data.

See Also