FastGithub/FastGithub.HttpServer/TcpMiddlewares/IHttpProxyFeature.cs
xingyuan55 4d9d97f871 start
2022-11-16 08:01:03 +08:00

12 lines
216 B
C#

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