Table of Contents

Class HttpMethods

Namespace
Songhay.Models
Assembly
SonghayCore.dll

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

string

Get

HTTP Method GET.

public const string Get = "GET"

Field Value

string

Head

HTTP Method HEAD.

public const string Head = "HEAD"

Field Value

string

Options

HTTP Method OPTIONS.

public const string Options = "OPTIONS"

Field Value

string

Post

HTTP Method POST.

public const string Post = "POST"

Field Value

string

Put

HTTP Method PUT.

public const string Put = "PUT"

Field Value

string

Trace

HTTP Method TRACE.

public const string Trace = "TRACE"

Field Value

string