gpt4 book ai didi

c# - WCF 流长度

转载 作者:行者123 更新时间:2023-11-30 15:49:31 25 4
gpt4 key购买 nike

我有以下代码将(文件)流发送到 wcf 客户端:

 public Stream Download( string path )
{

try
{
FileStream stream = new FileStream(path, FileMode.Open, FileAccess.Read);

return stream;

}
catch (Exception ex)
{
string error = ex.Message;

return null;
}
}

我想在客户端能够获取发送流的长度,但是Stream类不支持这个。

最好的方法是什么?

谢谢,托尼

最佳答案

[MessageContract]
public class SizedStreamMessage
{
[MessageHeader]
public long streamSize;

[MessageBody] //Has to be just one MessageBody for streaming to work!
public Stream theStream;
}

然后:

[OperationContract]
public SizedStreamMessage Download(string path)
{
//Fill in streamSize...
//Fill in theStream...
}

显然,它只适用于您实际上可以在服务器端获得大小而无需缓冲整个流的流(FileStream 应该可以工作,因为您始终可以在不实际读取文件的情况下获得文件的长度)。

关于c# - WCF 流长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1521429/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com