FastGithub/FastGithub.HttpServer/TcpMiddlewares/IHttpProxyFeature.cs
2022-06-20 17:07:09 +08:00

12 lines
216 B
C#

using Microsoft.AspNetCore.Http;
namespace FastGithub.HttpServer.TcpMiddlewares
{
interface IHttpProxyFeature
{
HostString ProxyHost { get; }
ProxyProtocol ProxyProtocol { get; }
}
}