Discuss this help topic in SecureBlackbox Forum
Defines possible types of responses received by TElRESTClient.
Declaration
[C#/Java]
TSBRESTResponseType = short;
const short rrtUnknown = 0;
const short rrtXML = 1;
const short rrtJSON = 2;
[VB.NET]
TSBRESTResponseType As SmallInt
Const rrtUnknown As SmallInt = 0
Const rrtXML As SmallInt = 1
Const rrtJSON As SmallInt = 2
[Pascal]
TSBRESTResponseType = (rrtUnknown, rrtXML, rrtJSON);
[C++]
typedef uint8_t TSBRESTResponseTypeRaw;
typedef enum { rrtUnknown = 0, rrtXML = 1, rrtJSON = 2 } TSBRESTResponseType;
Description
Possible values:
Declared in
.NET:
- Namespace: SBRESTClient
- Assembly: SecureBlackbox.HTTPClient
VCL:Java:
- Package: SecureBlackbox.HTTPClient.jar
C++:
Discuss this help topic in SecureBlackbox Forum