Discuss this help topic in SecureBlackbox Forum

TSBHTTPKeepAlivePolicy

Declared in     


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


Defines the ways TElHTTPSClient and its descendants can exploit keep-alives.

Declaration

[C#/Java]
    enum TSBHTTPKeepAlivePolicy { kapStandardDefined = 0, kapPreferKeepAlive = 1, kapRelyOnServer = 2, kapKeepAlivesDisabled = 3 };

[VB.NET]
    Enum TSBHTTPKeepAlivePolicy
        kapStandardDefined = 0
        kapPreferKeepAlive = 1
        kapRelyOnServer = 2
        kapKeepAlivesDisabled = 3
    End Enum

[Pascal]
    TSBHTTPKeepAlivePolicy = (kapStandardDefined, kapPreferKeepAlive, kapRelyOnServer, kapKeepAlivesDisabled);

[C++]
    typedef uint8_t TSBHTTPKeepAlivePolicyRaw;
    typedef enum
    {
        kapStandardDefined = 0,
        kapPreferKeepAlive = 1,
        kapRelyOnServer = 2,
        kapKeepAlivesDisabled = 3
    } TSBHTTPKeepAlivePolicy;

Possible values:

Declared in

.NET:
  • Namespace: SBHTTPSClient
  • Assembly: SecureBlackbox.HTTPClient
VCL:
  • Unit: SBHTTPSClient
Java:
  • Package: SecureBlackbox.HTTPClient.jar
C++:
  • sbhttpsclient.h

Discuss this help topic in SecureBlackbox Forum