取消了WCF REST下载

时间:2012-04-20 05:48:25

标签: wcf rest

我有一个REST服务,它通过Stream返回大文件作为返回类型。但是我需要一种方法来知道即使下载被客户端取消也传输了多少文件。完成这样的事情最好的方法是什么?

到目前为止,我已经提出以下建议:

        public Message GetFile(string path)
    {
        UsageLog log = new UsageLog();

        return WebOperationContext.Current.CreateStreamResponse((stream) =>
        {
            using (FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read))
            {
                byte[] buffer = new byte[_BufferSize];
                int bytesRead = 0;
                long totalBytesRead = 0;

                while (true)
                {
                    bytesRead = fs.Read(buffer, 0, _BufferSize);

                    if (bytesRead == 0)
                    {
                        break;
                    }

                    try
                    {
                        stream.Write(buffer, 0, bytesRead);
                    }
                    catch (CommunicationException ex)
                    {
                        break;
                    }

                    totalBytesRead += bytesRead;
                }

                log.TransferCompletedUtc = DateTime.UtcNow;
                log.BytesTransferred = totalBytesRead;
            }
        },
        "application/octet-stream");
    }

我有兴趣听到任何其他解决方案来完成这样的事情。

0 个答案:

没有答案