我正在尝试在所有网络接口上绑定自主主机web api。 在另一个问题中提供的常见用法: Web API self host - bind on all network interfaces。 但是,基本地址不接受星号。 以下代码:
string baseAddress = string.Format("http://*:9000/");
config = new HttpSelfHostConfiguration(baseAddress)
将抛出“System.UriFormatException”
根据here在Uri中禁止使用“*”,但我想知道是否还有其他方法来定义这样的基地址?