使用 https 的 C# WebClient
我想使用 WebClient 的 UploadData 方法使用 https 上传文件。我想忽略服务器端证书验证(始终接受服务器证书并仅使用 https 的加密功能)。
我已经尽力但找不到类似的样本。谁能告诉我如何实施?有参考样本吗?
我使用的是 VSTS2008 + C# + .Net 3.5。目标服务器运行 IIS 7.0 + Windows Vista x64。
I want to use https to upload a file using WebClient's UploadData method. And I want to ignore server side certificate verification (always accept server certificate and only use encryption feature of https).
I have tried hard but cannot find a similar sample. Could anyone advise me how to implement? Any reference samples?
I am using VSTS2008 + C# + .Net 3.5. Target server is running with IIS 7.0 + Windows Vista x64.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在发送 HTTPS 请求之前添加此内容(确保导入 System.Net 命名空间)。
Try adding this before you send you HTTPS requests (make sure you import
System.Net
namespace).