.Net CompactFramework 3.5 中的 System.Net.WebClient 类?
我需要与给我异步答案的服务器进行通信(流媒体连接)。
我发现这个:
http://msdn. microsoft.com/en-en/library/ms144211%28v=VS.80%29.aspx
生成此事件:
http://msdn.microsoft.com/en-en/library/system.net.webclient.openreadcompleted% 28v=VS.80%29.aspx
我认为这就是我所需要的,但我的CompactFramework 3.5的System.Net中没有WebClient类。
我该怎么办?
谢谢。
编辑:我做了一个更明确的问题: httpRequest,httpResponse,通过Stream发送GET并在 C# 中接收结果
I need to comunicate with a Server that give me async answers (streamer connection).
I find this:
http://msdn.microsoft.com/en-en/library/ms144211%28v=VS.80%29.aspx
that generate this event:
http://msdn.microsoft.com/en-en/library/system.net.webclient.openreadcompleted%28v=VS.80%29.aspx
I think this is what i need, but i don't have the WebClient class in my System.Net of CompactFramework 3.5.
How can i do?
Thanks.
EDIT: I've done a more clear question:
httpRequest, httpResponse, send GET through Stream and Receive the Result in C#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在查看的是.NET桌面框架,并且您需要.NET CF。 (对我来说)尚不清楚您需要哪种类型的流媒体。是常规的 HTTP / HTTPS 协议还是更自定义的协议?如果是 HTTP,您可以使用我们 SecureBlackbox 的 HTTP 客户端组件来满足您的需求。
What you are looking at is .NET desktop framework, and you need .NET CF. It's not clear (for me) what kind of streaming you need. Is it regular HTTP / HTTPS protocol or something more custom? If it's HTTP, you can use HTTP client component of our SecureBlackbox for your needs.