Discuss this help topic in SecureBlackbox Forum
This property provides access to certificate serial number.
Declaration
[C#]
byte[] SerialNumber;
[VB.NET]
Property SerialNumber As Byte()
[Pascal]
property SerialNumber : ByteArray;
[C++]
void get_SerialNumber(std::vector<uint8_t> &OutResult);
void set_SerialNumber(const std::vector<uint8_t> &Value);
[PHP]
string get_SerialNumber()
void set_SerialNumber(array of byte|string|NULL $Value)
[Java]
byte[] getSerialNumber();
void setSerialNumber(byte[] Value);
Description
Use this property to get certificate's serial number. Serial Number is a binary data block. To show it to the user, you need to first encode the binary to string.
Discuss this help topic in SecureBlackbox Forum