EMS.ResourceAPI.EEMSHTTPError.TCodes

提供: RAD Studio API Documentation
移動先: 案内検索

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

プロパティ

種類 可視性 ソース ユニット
record
struct
public
EMS.ResourceAPI.pas
EMS.ResourceAPI.hpp
EMS.ResourceAPI EEMSHTTPError


説明

いくつかの HTTP エラーHTTP ステータス コードを提供するヘルパです。

関連項目