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