IHttpProxyFeature.cs 216 B

1234567891011
  1. using Microsoft.AspNetCore.Http;
  2. namespace FastGithub.HttpServer.TcpMiddlewares
  3. {
  4. interface IHttpProxyFeature
  5. {
  6. HostString ProxyHost { get; }
  7. ProxyProtocol ProxyProtocol { get; }
  8. }
  9. }