API:EMS.ResourceAPI.EEMSHTTPError.TCodes

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

    TCodes = record
      const BadRequest = 400;
      const NotFound = 404;
      const Duplicate = 409;  // Duplicate
      const Unauthorized = 401;  // Don't know who you are
      const Forbidden = 403;  // I know who you are but not allowed
      const NotAcceptable = 406;  // Cannot produce requested content type
      const UnsupportedMedia = 415;  // Cannot consume specified content type
    end;

C++

struct DECLSPEC_DRECORD TCodes
{
public:
    static const System::Word BadRequest = System::Word(0x190);
    static const System::Word NotFound = System::Word(0x194);
    static const System::Word Duplicate = System::Word(0x199);
    static const System::Word Unauthorized = System::Word(0x191);
    static const System::Word Forbidden = System::Word(0x193);
    static const System::Word NotAcceptable = System::Word(0x196);
    static const System::Word UnsupportedMedia = System::Word(0x19f);
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
EMS.ResourceAPI.pas
EMS.ResourceAPI.hpp
EMS.ResourceAPI EEMSHTTPError

Beschreibung

Embarcadero Technologies verfügt zurzeit über keine zusätzlichen Informationen. Bitte unterstützen Sie uns bei der Dokumentation dieses Themas, indem Sie Ihre Kommentare auf der Diskussionsseite eingeben.