EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElX509Certificate.SerialNumber

TElX509Certificate    


 

This property provides access to certificate serial number.

 
 

Declaration

[C#]
    byte[] SerialNumber;

[VB.NET]
    Property SerialNumber As Byte()

[Pascal]
    property SerialNumber : string;

[VB6]
    Property IElCertificateX.SerialNumber As Variant

[ActiveX]
    HRESULT _stdcall IElCertificateX.SerialNumber([out, retval] VARIANT * Value);

[DLL]
    __stdcall BOOL SBX509GetSerialNumber(HANDLE handle, void* SerialNumber, int* Size);
 
 

Parameters

  • [DLL]handle - handle to the TElX509Certificate object that was returned by Constructor
  • Value (SerialNumber) - the certificate binary data. [ActiveX]On return the buffer contains a one-dimensional zero-based safe array with elements of type unsigned char (byte).
  • [DLL]Size - maximum amount of data that can be put to the buffer. On return this parameter contains the number of bytes placed to the buffer. If the buffer was not large enough, the return value is false and this parameter contains the minimum size of the buffer sufficient for the value requested.
 
 

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.

 
Contact Us | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2012, EldoS Corporation