using FastGithub.Configuration;
namespace FastGithub.Http
{
    /// 
    /// 表示请求上下文
    /// 
    sealed class RequestContext
    {
        /// 
        /// 获取或设置是否为https请求
        /// 
        public bool IsHttps { get; set; }
        /// 
        /// 请求的域名
        /// 
        public string? Domain { get; set; }
        /// 
        /// 获取或设置Sni值的表达式 
        /// 
        public TlsSniPattern TlsSniPattern { get; set; }
    }
}