Discuss this help topic in SecureBlackbox Forum

TElX509Certificate.SerialNumber

TElX509Certificate     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


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