namespace YY.Admin.Core;
///
/// HTTP请求方法枚举
///
[Description("HTTP请求方法枚举")]
public enum HttpMethodEnum
{
///
/// HTTP "GET" method.
///
[Description("HTTP \"GET\" method.")]
Get,
///
/// HTTP "POST" method.
///
[Description("HTTP \"POST\" method.")]
Post,
///
/// HTTP "PUT" method.
///
[Description(" HTTP \"PUT\" method.")]
Put,
///
/// HTTP "DELETE" method.
///
[Description("HTTP \"DELETE\" method.")]
Delete,
///
/// HTTP "PATCH" method.
///
[Description("HTTP \"PATCH\" method. ")]
Patch,
///
/// HTTP "HEAD" method.
///
[Description("HTTP \"HEAD\" method.")]
Head,
///
/// HTTP "OPTIONS" method.
///
[Description("HTTP \"OPTIONS\" method.")]
Options,
///
/// HTTP "TRACE" method.
///
[Description(" HTTP \"TRACE\" method.")]
Trace,
///
/// HTTP "CONNECT" method.
///
[Description("HTTP \"CONNECT\" method.")]
Connect
}