Discuss this help topic in SecureBlackbox Forum
Defines the ways TElHTTPSClient and its descendants can exploit keep-alives.
Declaration
[C#]
public 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;
[PHP]
class TSBHTTPKeepAlivePolicy extends TSBBaseEnum {
const kapStandardDefined = 0;
const kapPreferKeepAlive = 1;
const kapRelyOnServer = 2;
const kapKeepAlivesDisabled = 3;
}
[Java]
public enum TSBHTTPKeepAlivePolicy { kapStandardDefined, kapPreferKeepAlive, kapRelyOnServer, kapKeepAlivesDisabled }
Possible values:
Declared in
.NET:
- Namespace: SBHTTPSClient
- Assembly: SecureBlackbox.HTTPClient
VCL:Java:
- Package: SecureBlackbox.HTTPClient.jar
C++:
Discuss this help topic in SecureBlackbox Forum