我正在将 C# 控制台应用程序转换为自托管 Web 应用程序。
控制台应用程序使用带有两个前缀的 HttpListener:
listener.Prefixes.Add("http://+:" + AppSettingsUtils.GetListenerPort() + "/");
if (Config.isProd)
{
listener.Prefixes.Add("http://[somehostname].com:" + AppSettingsUtils.GetListenerPort() + "/");
}
我正在使用 HttpSelfHostServer 进行转换:
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration("http://localhost:" + AppSettingsUtils.GetListenerPort() + "/");
[Some Code]...
using(HttpSelfHostServer server = new HttpSelfHostServer(config))
{
server.OpenAsync().Wait();
Console.ReadLine();
}
有没有办法在 HttpSelfHostServer 上设置多个前缀?我应该克隆 HttpSelfHostConfiguration,修改其基地址并创建另一个 HttpSelfHostServer 实例吗?可能有效,但这样做似乎是错误的。