REST.Client.TCustomRESTResponse.TStatus

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

    TStatus = record
    private
      [weak] FResponse: TCustomRESTResponse;
    public
      function Success: Boolean;
      function ClientError: Boolean;
      function SuccessOK_200: Boolean;
      function SucessCreated_201: Boolean;
      function ClientErrorBadRequest_400: Boolean;
      function ClientErrorUnauthorized_401: Boolean;
      function ClientErrorForbidden_403: Boolean;
      function ClientErrorNotFound_404: Boolean;
      function ClientErrorNotAcceptable_406: Boolean;
      function ClientErrorDuplicate_409: Boolean;
    end;

C++

struct DECLSPEC_DRECORD TStatus
{
private:
    TCustomRESTResponse* FResponse;
public:
    bool __fastcall Success();
    bool __fastcall ClientError();
    bool __fastcall SuccessOK_200();
    bool __fastcall SucessCreated_201();
    bool __fastcall ClientErrorBadRequest_400();
    bool __fastcall ClientErrorUnauthorized_401();
    bool __fastcall ClientErrorForbidden_403();
    bool __fastcall ClientErrorNotFound_404();
    bool __fastcall ClientErrorNotAcceptable_406();
    bool __fastcall ClientErrorDuplicate_409();
};

Propriétés

Type Visibilité  Source Unité  Parent
record
struct
public
REST.Client.pas
REST.Client.hpp
REST.Client TCustomRESTResponse

Description

Embarcadero Technologies ne possède pas d'informations supplémentaires pour le moment. Veuillez nous aider à documenter cette rubrique en utilisant la page Discussion !