c# – .NET Core中HttpListener的模拟内容

我将应用程序从.NET 4移植到.NET Core,无法找到HttpListener类的模拟
Error   CS0246  The type or namespace name 'HttpListener' Could not be found (are you missing a using directive or an assembly reference?)

UPDATE1

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(在Microsoft.Net.Http.Server NuGet包中)是最接近的替代品,但具有不同的API.或者,还有Kestrel HTTP服务器,它最好从ASP.NET Core堆栈中使用,但可以单独使用(但很难设置).

如果您正在移植,我建议等到.NET Core 2.0,它具有兼容API的HttpListener,可以跨平台工作,并且不需要您完全更改代码.

相关文章

本文将从上往下,循序渐进的介绍一系列相关.NET的概念,先从...
基于 .NET 的一个全新的、好用的 PHP SDK + Runtime: Pe...
.NET 异步工作原理介绍。
引子 .NET 6 开始初步引入 PGO。PGO 即 Profile Guided Opti...
前言 2021/4/8 .NET 6 Preview 3 发布,这个版本的改进大多来...
前言 开头防杠:.NET 的基础库、语言、运行时团队从来都是相...