mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-15 14:53:37 +01:00
17 lines
530 B
C#
17 lines
530 B
C#
namespace WireMock.Constants;
|
|
|
|
/// <summary>
|
|
/// https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods
|
|
/// </summary>
|
|
public static class HttpRequestMethod
|
|
{
|
|
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";
|
|
} |