Mono 中的 system.web 功能缺失?

发布于 2024-11-05 18:14:26 字数 108 浏览 0 评论 0原文

我需要 HttpUtility 来编码字符串,但似乎它受支持,但不再支持。 实际上,整个 System.Web 都消失了。

还有其他选择吗?我需要 Javascript 转义一些字符串。

I need HttpUtility for encoding strings, but it seems it was supported, but no longer.
Actually, the whole System.Web is gone.

Is there an alternative? I need to Javascript Escape some strings.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

策马西风 2024-11-12 18:14:27

HttpUtility 类位于 System.Web.Services 程序集中,只需确保您引用该程序集即可。

The HttpUtility class lives in the System.Web.Services assembly, just make sure that you are referencing that assembly.

话少情深 2024-11-12 18:14:27

我正在将 Xamarin Studio 与 Mono 3.0.10 结合使用,在其中,您需要引用 System.Web dll 并将其包含在其中,

using System.Web;

然后您将拥有可用的 HTTPUtility 和编码/解码功能

I am using Xamarin Studio with Mono 3.0.10 and in there, you need to reference the System.Web dll and include it with

using System.Web;

Then you will have the HTTPUtility and encode/decode functionality available

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文