15 lines
243 B
C#
15 lines
243 B
C#
namespace DTLib.Web;
|
|
|
|
/// <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Methods"/>
|
|
public enum HttpMethod
|
|
{
|
|
GET,
|
|
POST,
|
|
PUT,
|
|
DELETE,
|
|
PATCH,
|
|
HEAD,
|
|
OPTIONS,
|
|
TRACE,
|
|
CONNECT
|
|
} |