Uri 中的 dontEscape 支持有什么用? .NET 3.5
文档指出 dontEscape 已弃用且始终为 false。
然而它确实有效。无论如何使用它是一个好主意,还是有其他替代方法来发送不符合 RFC 的 Http 请求?
示例代码:
Dim U As New Uri("http://www.google.com/>", True)
Dim W As New Net.WebClient()
WL(W.DownloadString(U))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“该方法已被弃用。请使用 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?