REST.Client.TCustomRESTRequest.Method
Delphi
property Method: TRESTRequestMethod read FMethod write SetMethod stored MethodIsStored;
C++
__property Rest::Types::TRESTRequestMethod Method = {read=FMethod, write=SetMethod, stored=MethodIsStored, nodefault};
Eigenschaften
| Typ | Sichtbarkeit | Quelle | Unit | Übergeordnet |
|---|---|---|---|---|
| property | public | REST.Client.pas REST.Client.hpp |
REST.Client | TCustomRESTRequest |
Beschreibung
HTTP-Methode der Anforderung.
Der Vorgabewert ist rmGET. Die folgenden Werte sind möglich:
| Wert | Methode |
|---|---|
rmGET
|
GET |
rmPOST
|
POST |
rmPUT
|
PUT |
rmDELETE
|
DELETE |
rmPATCH
|
PATCH |