WCF : PlatformNotSupportedException when running Server Projects对我不起作用...

Console.WriteLine(System.Net.HttpListener.IsSupported); // false

代码:
HttpListener h = new HttpListener();

错误:
System.PlatformNotSupportedException: Operation is not supported on this platform

In System.Net.HttpListener..ctor()

我最近重新安装了Windows 10 1703,我不知道为什么会这样。

但我可以在Windows 10 1511上使用它

最佳答案

http://www.mycsharp.de/wbb2/thread.php?threadid=92534

它帮助了我!

因为我的HTTP开始选项是4。

我修好了它。

sc config http start=demand
sc start http

关于c# - 为什么我不能在Windows 10计算机中使用HttpListener? (System.PlatformNotSupportedException),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45899696/

10-11 15:57