Ben .NET Core .NET 4 uygulamayı taşıma ediyorum ve HttpListener sınıfNET'te Çekirdek
Error CS0246 The type or namespace name 'HttpListener' could not be found (are you missing a using directive or an assembly reference?)
için analog bulamıyorum Update1 HttpListener için analog nedir
private readonly HttpListener _httpListener;
if (!HttpListener.IsSupported)
{
throw new NotSupportedException(
"The Http Server cannot run on this operating system.");
}
_httpListener = new HttpListener();
_httpListener.Prefixes.Add(prefix);
_sessionSettings = settings;
WebListener var? https://docs.microsoft.com/en-us/aspnet/core/fundamentals/servers/weblistener –
Ayrıca github https://github.com/robertsundstrom/HttpListener –
üzerinde birden fazla basit kütüphane var (WebListener ve github aniden .com/robertsundstrom/HttpListener) bazı özelliklere sahip değil ve uyumlu değil – Alexander