mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-25 11:44:50 +01:00
18 lines
593 B
C#
18 lines
593 B
C#
namespace WireMock.Http
|
|
{
|
|
/// <summary>
|
|
/// https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods
|
|
/// </summary>
|
|
internal static class HttpRequestMethods
|
|
{
|
|
public const string CONNECT = "CONNECT";
|
|
public const string DELETE = "DELETE";
|
|
public const string GET = "GET";
|
|
public const string HEAD = "HEAD";
|
|
public const string OPTIONS = "OPTIONS";
|
|
public const string PATCH = "PATCH";
|
|
public const string POST = "POST";
|
|
public const string PUT = "PUT";
|
|
public const string TRACE = "TRACE";
|
|
}
|
|
} |