Class HttpMethods
Centralizes HttpMethod members as strings.
public static class HttpMethods
- Inheritance
-
HttpMethods
- Inherited Members
Remarks
Reference: “HTTP request methods” [https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods]
Fields
Delete
HTTP Method DELETE
.
public const string Delete = "DELETE"
Field Value
Get
HTTP Method GET
.
public const string Get = "GET"
Field Value
Head
HTTP Method HEAD
.
public const string Head = "HEAD"
Field Value
Options
HTTP Method OPTIONS
.
public const string Options = "OPTIONS"
Field Value
Post
HTTP Method POST
.
public const string Post = "POST"
Field Value
Put
HTTP Method PUT
.
public const string Put = "PUT"
Field Value
Trace
HTTP Method TRACE
.
public const string Trace = "TRACE"