Discuss this help topic in SecureBlackbox Forum

TSBOCSPClientOptions

Declared in     See also     


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


Defines a set of options used by TElOCSPClient component.

Declaration

[C#]
    TSBOCSPClientOptions = int;
        const int ocoIncludeVersion = 1;
        const int ocoIncludeSupportedResponseTypes = 2;

[VB.NET]
    TSBOCSPClientOptions As Integer
        Const ocoIncludeVersion As Integer = 1
        Const ocoIncludeSupportedResponseTypes As Integer = 2

[Pascal]
    TSBOCSPClientOptions = set of TSBOCSPClientOption;

[C++]
    typedef uint8_t TSBOCSPClientOptionRaw;
    typedef enum { ocoIncludeVersion = 0, ocoIncludeSupportedResponseTypes = 1 } TSBOCSPClientOption;
    
    typedef uint32_t TSBOCSPClientOptionsRaw;
    typedef enum { f_ocoIncludeVersion = 1, f_ocoIncludeSupportedResponseTypes = 2 } TSBOCSPClientOptions;

[PHP]
    class TSBOCSPClientOptions extends TSBBaseEnum {
        const ocoIncludeVersion = 1;
        const ocoIncludeSupportedResponseTypes = 2;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBOCSPClient
  • Assembly: SecureBlackbox.PKI
VCL:
  • Unit: SBOCSPClient
Java:
  • Package: SecureBlackbox.PKI.jar
C++:
  • sbocspclient.h

See also:     TSBOCSPClientOption    

Discuss this help topic in SecureBlackbox Forum