在工作中我目前陷入3.5,但我们正在使用asyncbridge进行async-await。我们正在使用很多旧的WCF异步调用,我想将它包装到新的async-await模式中。
我将其包装如下:
// async is wrong
public /*async*/ Task<ScannedDocumentResult> GetScannedDocumentsTask(String assignmentId)
{
TaskCompletionSource<ScannedDocumentResult> tcs = new TaskCompletionSource<ScannedDocumentResult>();
EventHandler<GetScannedDocumentsCompletedEventArgs> handler = null;
handler = (o, e) =>
{
if (e.UserState != tcs)
return;
if (e.Error != null)
tcs.SetException(e.Error);
else if (e.Cancelled)
tcs.SetCanceled();
else
tcs.SetResult(e.Result);
GetScannedDocumentsCompleted -= handler;
};
GetScannedDocumentsCompleted += handler;
GetScannedDocumentsAsync(assignmentId, tcs);
return tcs.Task;
}
以下是在3.5 WCF代理中生成的:
GetScannedDocumentsAsync GetScannedDocumentsCompleted GetScannedDocumentsEventArgs
有些东西告诉我,这可以做得更清洁,我错过了一些重要的东西吗?
此外,此方法是否会执行异步?使用异步运算符进行编译只会产生错误。
答案 0 :(得分:6)
您还应该获得BeginGetScannedDocuments
和EndGetScannedDocuments
,您可以使用TaskFactory.FromAsync
进行换行。我有一篇博文显示how to use task wrappers with old-school (pre-4.5) WCF(服务器和客户端)。