Table of Contents

THttpMethod Enumeration

Enumerates the recognized HTTP request methods.

Remarks

Other is used for any method that is not one of the standard values listed here.

Syntax

Unit: Sparkle.HttpServer.Request

Members

Name Value Description
Other 0 A method that is not one of the standard recognized methods.
Get 1 The HTTP GET method.
Post 2 The HTTP POST method.
Put 3 The HTTP PUT method.
Delete 4 The HTTP DELETE method.
Head 5 The HTTP HEAD method.
Patch 6 The HTTP PATCH method.
Options 7 The HTTP OPTIONS method.