DTLib/DTLib.Web/HttpMethod.cs
2025-03-23 02:36:47 +05:00

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
}