REST.Types.DefaultRESTRequestParameterKind

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

DefaultRESTRequestParameterKind: TRESTRequestParameterKind = TRESTRequestParameterKind.pkGETorPOST;

C++

extern DELPHI_PACKAGE TRESTRequestParameterKind DefaultRESTRequestParameterKind;

Properties

Type Visibility Source Unit Parent
variable public
REST.Types.pas
REST.Types.hpp
REST.Types REST.Types

Description

Default parameter type to be added to requests.

The DefaultRESTRequestParameterKind is a pkGETorPOST kind, that is to say, the parameter will be sent as a URL parameter (for GET requests) or as a body parameter (for POST requests).

See Also