Stream.Length throws NotSupportedException(Stream.Length 抛出 NotSupportedException)
问题描述
在发送到我的 WCF 方法中的 Stream 对象上尝试 stream.Length 时出现错误.
I am getting a error when attempting stream.Length on a Stream object sent into my WCF method.
Unhandled Exception!
Error ID: 0
Error Code: Unknown
Is Warning: False
Type: System.NotSupportedException
Stack: at System.ServiceModel.Dispatcher.StreamFormatter.MessageBodyStream.get_Length()
你如何获得流的长度?有什么例子吗?
How do you get the length of the stream? any examples?
推荐答案
Stream.Length 仅适用于可以进行查找的 Stream 实现.您通常可以检查 Stream.CanSeek 是真的.许多流,因为它们正在流式传输,因此不可能提前知道长度.
Stream.Length only works on Stream implementations where seeking is available. You can usually check to see if Stream.CanSeek is true. Many streams, since they're being streamed, are of a nature where it's impossible to know the length in advance.
如果您必须知道长度,您可能需要实际缓冲整个流,提前将其加载到内存中.
If you must know the length, you may need to actually buffer the entire stream, loading it into memory in advance.
这篇关于Stream.Length 抛出 NotSupportedException的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Stream.Length 抛出 NotSupportedException


基础教程推荐
- 将数据集转换为列表 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- 从 C# 控制相机设备 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- 如果条件可以为空 2022-01-01
- 获取C#保存对话框的文件路径 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01