Mono 中的 system.web 功能缺失?
我需要 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
HttpUtility 类位于 System.Web.Services 程序集中,只需确保您引用该程序集即可。
The HttpUtility class lives in the System.Web.Services assembly, just make sure that you are referencing that assembly.
我正在将 Xamarin Studio 与 Mono 3.0.10 结合使用,在其中,您需要引用 System.Web dll 并将其包含在其中,
然后您将拥有可用的 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
Then you will have the HTTPUtility and encode/decode functionality available