Discuss this help topic in SecureBlackbox Forum
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:Java:
- Package: SecureBlackbox.HTTPClient.jar
C++:
Discuss this help topic in SecureBlackbox Forum