Response.TransmitFile 完成后运行代码

发布于 2024-08-03 07:13:38 字数 164 浏览 7 评论 0原文

我正在使用 Response.TransmitFile 从 Web 服务检索文件。我想从服务器的角度测量此过程所需的时间。

我尝试获取此调用之前和之后的滴答计数,但这显然并不代表传输花费了多长时间。它给我返回的数字是 30 MB 文件的 0.0016 毫秒。 :-)

有什么想法吗?

I'm using Response.TransmitFile to retrieve a file from a web service. I'd like to measure the amount of time this process takes from the server's perspective.

I've tried grabbing the tick count before and after this call, but that clearly didn't represent how long the transfer took. It gave me back numbers like 0.0016 milliseconds for a 30 MB file. :-)

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似最初 2024-08-10 07:13:38

正如您所见,传输是异步的。

您可以通过在调用 TransmitFile 之前关闭 HttpResponse 中的缓冲 (Response.Buffer = false) 来获得您想要的结果。如果失败,则 传输使用 FileStream“手动”同步。

如果您只想观察传输所需的时间,仅供参考,并且不需要在应用程序中记录时间,则可以使用 Fiddler 来完成。

The transfer is asynchronous, as you've seen.

You may be able to get what you want by turning off buffering in the HttpResponse (Response.Buffer = false) before calling TransmitFile. If that fails, then transmit it "manually" and synchronously, using FileStream.

If you only want to observe the time required for the transmission, just for your information, and don't need to log the time in your application, you can do it with Fiddler.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文