Icon TServerRequestMethod

Unit: WebHTTP

TServerRequestMethod = (rmGet,rmPost,rmHead,rmPut,rmDelete,
      rmPatch)

Available In: Client and Server Applications

The TServerRequestMethod enumerated type is used with the TServerRequest component to specify the HTTP method for a web server request.

ElementDescription
rmDeleteSpecifies that the request is an HTTP DELETE request.
rmGetSpecifies that the request is an HTTP GET request.
rmHeadSpecifies that the request is an HTTP HEAD request.
rmPatchSpecifies that the request is an HTTP PATCH request.
rmPostSpecifies that the request is an HTTP POST request.
rmPutSpecifies that the request is an HTTP PUT request.
Image