Uri 中的 dontEscape 支持有什么用? .NET 3.5

发布于 2024-08-07 14:58:16 字数 356 浏览 5 评论 0 原文

文档指出 dontEscape 已弃用且始终为 false

然而它确实有效。无论如何使用它是一个好主意,还是有其他替代方法来发送不符合 RFC 的 Http 请求?

示例代码:

Dim U As New Uri("http://www.google.com/>", True)
Dim W As New Net.WebClient()
WL(W.DownloadString(U))

Documentation state that dontEscape is deprecated and always false.

However it actually works. Is it a good idea to use it anyway, or is there any other alternative to send non RFC compliant Http requests?

Sample Code:

Dim U As New Uri("http://www.google.com/>", True)
Dim W As New Net.WebClient()
WL(W.DownloadString(U))

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

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

发布评论

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

评论(1

帅的被狗咬 2024-08-14 14:58:16

“该方法已被弃用。请使用 GetComponents() 或 static UnescapeDataString() 对 Uri 组件或字符串进行转义。http://go.microsoft.com/fwlink/?linkid=14202

来自过时属性的引用。你尝试过这种方法吗?

"The method has been deprecated. Please use GetComponents() or static UnescapeDataString() to unescape a Uri component or a string. http://go.microsoft.com/fwlink/?linkid=14202"

Citation from obsolete attribute. Have you tried this approaches?

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