REST.Client.TCustomRESTRequest.Method

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Method: TRESTRequestMethod read FMethod write SetMethod stored MethodIsStored;

C++

__property Rest::Types::TRESTRequestMethod Method = {read=FMethod, write=SetMethod, stored=MethodIsStored, nodefault};

Properties

Type Visibility Source Unit Parent
property public
REST.Client.pas
REST.Client.hpp
REST.Client TCustomRESTRequest

Description

HTTP method of the request.

The default value is rmGET. Possible values are:

Value Method
rmGET GET
rmPOST POST
rmPUT PUT
rmDELETE DELETE
rmPATCH PATCH

See Also