问题描述
publicWebResponseWeb(url){WebResponsere;HttpWebRequestresq=(HttpWebRequest)WebRequest.Create(url);re=resq.GetResponse();returnre;}
解决方案
解决方案二:
异步请求Async要么另开一个线程
解决方案三:
引用1楼wyd1520的回复:
异步请求Async要么另开一个线程
异步请求Async能不能给我一个例子?
解决方案四:
http://www.cnblogs.com/SanMaoSpace/archive/2011/07/27/2118133.htmlhttps://msdn.microsoft.com/en-us/library/system.net.webrequest.getresponseasync.aspx
解决方案五:
private readonly Dispatcher _dispatcher = Dispatcher.CurrentDispatcher; _dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() => { //TODO: }));
时间: 2025-01-01 23:51:46