你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

CloudTask.CopyNodeFileContentToString 方法

定义

将计算节点上任务目录中文件的内容读入字符串。

public string CopyNodeFileContentToString (string filePath, System.Text.Encoding encoding = default, Microsoft.Azure.Batch.GetFileRequestByteRange byteRange = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);
member this.CopyNodeFileContentToString : string * System.Text.Encoding * Microsoft.Azure.Batch.GetFileRequestByteRange * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> string
Public Function CopyNodeFileContentToString (filePath As String, Optional encoding As Encoding = Nothing, Optional byteRange As GetFileRequestByteRange = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing) As String

参数

filePath
String

要检索的文件的路径。

encoding
Encoding

要使用的编码。 如果未指定值或 null,则使用 UTF8。

byteRange
GetFileRequestByteRange

一个字节范围,用于定义要复制的文件的哪个部分。 如果省略,则下载整个文件。

additionalBehaviors
IEnumerable<BatchClientBehavior>

在当前 对象的 CustomBehaviors 之后应用的 BatchClientBehavior 实例的集合。

返回

绑定 NodeFile 对象。

适用于