3

我有一种将一个文件上传到服务器的方法。除了方法上的任何错误编码之外,现在正在工作(我是任务库的新手)。

这是将文件上传到服务器的代码:

private async void UploadDocument()

{
    var someTask = await Task.Run<bool>(() =>
    {
        // open input stream
        using (System.IO.FileStream stream = new System.IO.FileStream(_cloudDocuments[0].FullName, System.IO.FileMode.Open, System.IO.FileAccess.Read))
        {
            using (StreamWithProgress uploadStreamWithProgress = new StreamWithProgress(stream))
            {
                uploadStreamWithProgress.ProgressChanged += uploadStreamWithProgress_ProgressChanged;

                // start service client
                SiiaSoft.Data.FieTransferWCF ws = new Data.FieTransferWCF();

                // upload file
                ws.UploadFile(_cloudDocuments[0].FileName, (long)_cloudDocuments[0].Size, uploadStreamWithProgress);

                // close service client
                ws.Close();
            }
        }

        return true;

    });

}

然后我有一个 ListBox,我可以在其中拖放多个文件,所以我想做的是在 ListBox 文件中执行 FOR LOOP,然后调用UploadDocument();,但我想先在 listBox 中上传第一个文件,然后在完成后继续第二个文件等等...

关于最好的方法的任何线索?

非常感谢。

4

1 回答 1

9

你应该做你的UploadDocument回报Task。然后您可以循环等待任务。例如:

private async Task UploadAllDocuments()
{
    string[] documents = ...; // Fetch the document names

    foreach (string document in documents)
    {
        await UploadDocument(document);
    }
}

private async Task UploadDocument(string document)
{
    // Code as before, but use document instead of _cloudDocuments[0]
}

事实上,UploadDocument无论如何你都可以变得更简单:

private Task UploadDocument()
{
    return Task.Run<bool>(() =>
    {
        // Code as before
    });
}

将其包装在一个async方法中并不是特别有用。

(您可能很想将类型更改为 not string- 不清楚是什么_cloudDocuments。)

通常,您应该始终async返回方法Task,或者Task<T>除非您必须使其返回void以符合事件处理模式。

于 2013-02-27T15:28:57.773 回答