Framework_YooAsset_HybridCLR/Assets/Plugins/TouchSocket/TouchSocket.Http/Common/HttpMethod.cs

111 lines
3.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

//------------------------------------------------------------------------------
// 此代码版权除特别声明或在XREF结尾的命名空间的代码归作者本人若汝棋茗所有
// 源代码使用协议遵循本仓库的开源协议及附加协议若本仓库没有设置则按MIT开源协议授权
// CSDN博客https://blog.csdn.net/qq_40374647
// 哔哩哔哩视频https://space.bilibili.com/94253567
// Gitee源代码仓库https://gitee.com/RRQM_Home
// Github源代码仓库https://github.com/RRQM
// API首页https://touchsocket.net/
// 交流QQ群234762506
// 感谢您的下载和使用
//------------------------------------------------------------------------------
using System;
namespace TouchSocket.Http
{
/// <summary>
/// HttpMethod
/// </summary>
public readonly struct HttpMethod
{
/// <summary>
/// 值
/// </summary>
private readonly string m_value;
/// <summary>
/// Get
/// </summary>
public static readonly HttpMethod Get = new HttpMethod("get");
/// <summary>
/// Post
/// </summary>
public static readonly HttpMethod Post = new HttpMethod("post");
/// <summary>
/// Put
/// </summary>
public static readonly HttpMethod Put = new HttpMethod("put");
/// <summary>
/// Delete
/// </summary>
public static readonly HttpMethod Delete = new HttpMethod("delete");
/// <summary>
/// 表示
/// </summary>
/// <param name="value">值</param>
public HttpMethod(string value)
{
if (string.IsNullOrEmpty(value))
{
throw new ArgumentNullException();
}
this.m_value = value.ToUpper();
}
/// <summary>
/// 转换为字符串
/// </summary>
/// <returns></returns>
public override string ToString()
{
return this.m_value;
}
/// <summary>
/// 获取哈希码
/// </summary>
/// <returns></returns>
public override int GetHashCode()
{
return this.m_value.GetHashCode();
}
/// <summary>
/// 比较是否和目标相等
/// </summary>
/// <param name="obj">目标</param>
/// <returns></returns>
public override bool Equals(object obj)
{
return obj is HttpMethod && this.GetHashCode() == obj.GetHashCode();
}
/// <summary>
/// 等于
/// </summary>
/// <param name="a"></param>
/// <param name="b"></param>
/// <returns></returns>
public static bool operator ==(HttpMethod a, HttpMethod b)
{
return string.IsNullOrEmpty(a.m_value) && string.IsNullOrEmpty(b.m_value) || string.Equals(a.m_value, b.m_value, StringComparison.OrdinalIgnoreCase);
}
/// <summary>
/// 不等于
/// </summary>
/// <param name="a"></param>
/// <param name="b"></param>
/// <returns></returns>
public static bool operator !=(HttpMethod a, HttpMethod b)
{
var state = a == b;
return !state;
}
}
}