我想用 C# 运行一个代码块(或方法)。在此块中,我使用 Web 服务方法。我想异步运行它(以避免冻结应用程序)超时。我的代码是:
SmsSender s = new SmsSender();
dataGrid.ItemsSource =
s.GetAllInboxMessagesDataSet().Tables[0].DefaultView;
在此之前,我使用线程。流产。最后我找到了那个线程。阿布罗特是邪恶的
请帮助我
如果您使用的是 C# 4.5,则可以这样做:
var cts = new CancellationTokenSource(3000); // Set timeout
var task = Task.Run(() =>
{
while (!cts.Token.IsCancellationRequested)
{
// Working...
}
}, cts.Token);
这个问题有不同的解决方案(不冻结主线程)。我的解决方案是创建一个任务,然后在其中创建我等待的第二个任务。包装器任务不会被等待或加入阻塞,因此主线程不会被阻塞。通过事件,我可以通知调用方,工作线程任务是否已超时。代码如下所示:
// create asynchronous task. in order not to block the calling thread,
// create and start another task in this one and wait for its completion
var synchronize = new System.Threading.Tasks.Task(() =>
{
var worker = new System.Threading.Tasks.TaskFactory().StartNew(() =>
{
// do something work intensive
});
var workCompleted = worker.Wait(10000 /* timeout */);
if (!workCompleted)
{
// worker task has timed-out
}
});