EmbeddedText.FromStream(String, Stream, SourceHashAlgorithm) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
构造 EmbeddedText 流内容。
public static Microsoft.CodeAnalysis.EmbeddedText FromStream (string filePath, System.IO.Stream stream, Microsoft.CodeAnalysis.Text.SourceHashAlgorithm checksumAlgorithm = Microsoft.CodeAnalysis.Text.SourceHashAlgorithm.Sha1);
static member FromStream : string * System.IO.Stream * Microsoft.CodeAnalysis.Text.SourceHashAlgorithm -> Microsoft.CodeAnalysis.EmbeddedText
Public Shared Function FromStream (filePath As String, stream As Stream, Optional checksumAlgorithm As SourceHashAlgorithm = Microsoft.CodeAnalysis.Text.SourceHashAlgorithm.Sha1) As EmbeddedText
参数
- filePath
- String
文件路径 (在 PDB 中使用的预规范化) 。
- stream
- Stream
流。
- checksumAlgorithm
- SourceHashAlgorithm
用于计算保存到 PDB 的文本校验和的哈希算法。
返回
例外
filePath
为 null。
stream
为 null。
filePath
为空。
stream
不支持阅读或寻求。
不支持 checksumAlgorithm
。
出现 I/O 错误。
注解
从流的开头读取。 使流保持打开状态。