Enum RouteMethod
Represents an HTTP method to be matched in an Route.
[Flags]
public enum RouteMethod
Fields
Any = Get | Post | Put | Patch | Delete | Head | Options
Represents any HTTP method.
Delete = 32
Represents the HTTP DELETE method.
Get = 2
Represents the HTTP GET method.
Head = 128
Represents the HTTP HEAD method.
Options = 256
Represents the HTTP OPTIONS method.
Patch = 16
Represents the HTTP PATCH method.
Post = 4
Represents the HTTP POST method.
Put = 8
Represents the HTTP PUT method.