明天的明天 永远的永远 未知的一切 我与你一起承担 ??

是非成败转头空 青山依旧在 几度夕阳红 。。。
  博客园  :: 首页  :: 管理

2008年11月3日

摘要: 实现异步请求System.Net 类使用 .NET 框架的标准异步编程模型对 Internet 资源进行异步访问。WebRequest 类的 BeginGetResponse 和 EndGetResponse 方法分别启动和完成对 Internet 资源的异步请求。注意 在异步回调方法中使用同步调用可能会导致严重的性能降低。通过 WebRequest 及其子代实现的 Internet 请求必须使用... 阅读全文

posted @ 2008-11-03 12:43 且行且思 阅读(663) 评论(0) 推荐(0) 编辑

摘要: 代码如下: int c,cc=4096; public static ManualResetEvent allDone = new ManualResetEvent(false); FileStream fs = new FileStream( "file to post",.......); asyncResult = request.BeginGetRequestStream(new ... 阅读全文

posted @ 2008-11-03 12:19 且行且思 阅读(4367) 评论(0) 推荐(0) 编辑

摘要: private static void EndGetStreamCallback(IAsyncResult ar){ FtpState state = (FtpState) ar.AsyncState; Stream requestStream = null; // End the asynchronous call to get the request stream. t... 阅读全文

posted @ 2008-11-03 12:15 且行且思 阅读(615) 评论(0) 推荐(0) 编辑