中有Prefixes
字段HttpListener
。您可以添加一些字符串,例如“ http://+:8080/ ”,您的应用程序只需处理对 8080 端口的所有查询。
我有HttpSelfHostServer
它只能使用有效的 Uri 字符串,例如它的HttpSelfHostConfiguration
类的输入。我想在我HttpSelfHostServer
喜欢的HttpListener
前缀中获得相同的行为,例如:
http://*:8080/
等等...
...
var configuration = new HttpSelfHostConfiguration(prefix)
var server = new HttpSelfHostServer(configuration);
...