为什么我看不到 HttpUtility.ParseQueryString 方法?

Why can't I see HttpUtility.ParseQueryString Method?

我正在开发一个简单的应用程序来使用 web API 使用这个新的奇妙的 .Net 核心框架。在我之前的一个项目中,我使用 HttpUtility.ParseQueryString 来解析查询字符串。但是我在新 Asp.Net 核心 RC2 程序集和包中找不到任何对此方法的引用。可能会出现我还不知道的新方法。我当前的项目,我引用了以下包-

Microsoft.AspNetCore.Diagnostics": "1.0.0-rc2-final",
    "Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
    "Microsoft.AspNetCore.Mvc.WebApiCompatShim": "1.0.0-rc2-final",
    "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
    "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
    "Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-final",
    "Microsoft.AspNetCore.WebUtilities": "1.0.0",
    "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
    "Microsoft.NETCore.App": {
      "version": "1.0.0-rc2-3002702",
      "type": "platform"
    },
    "System.Collections.Specialized": "4.0.1-rc2-24027",
    "System.Net.Http": "4.0.1-rc2-24027",
    "System.Runtime.Serialization.Json": "4.0.1"

为了访问此方法,我需要参考任何其他包吗?

ASP.NET Core has a number of architectural changes that result in a much leaner and modular framework. ASP.NET Core is no longer based on System.Web.dll. It is based on a set of granular and well factored NuGet packages. (Introduction to ASP.NET Core)

现在您可以在 Microsoft.AspNetCore.WebUtilities 程序集中找到它,其签名为:Microsoft.AspNetCore.WebUtilities.QueryHelpers.ParseQuery