Discuss this help topic in SecureBlackbox Forum

TSBRESTResponseType

Declared in     


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


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:
  • Unit: SBRESTClient
Java:
  • Package: SecureBlackbox.HTTPClient.jar
C++:
  • sbrestclient.h

Discuss this help topic in SecureBlackbox Forum