Table of Contents

Enum RouteMethod

Namespace: Sisk.Core.Routing
Assembly: Sisk.Core.dll

Represents an HTTP method to be matched in an Route.

[Flags]
public enum RouteMethod

Fields

Any = 446

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.