Discuss this help topic in SecureBlackbox Forum

TSBRESTResponseType

Declared in     


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


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;
    }

[Java]
    not available

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