JobOperations.CopyNodeFileContentToStream Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Copie le contenu d’un fichier du répertoire de la tâche spécifiée sur son nœud de calcul vers le donné Stream.
public void CopyNodeFileContentToStream (string jobId, string taskId, string filePath, System.IO.Stream stream, Microsoft.Azure.Batch.GetFileRequestByteRange byteRange = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);
member this.CopyNodeFileContentToStream : string * string * string * System.IO.Stream * Microsoft.Azure.Batch.GetFileRequestByteRange * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> unit
Public Sub CopyNodeFileContentToStream (jobId As String, taskId As String, filePath As String, stream As Stream, Optional byteRange As GetFileRequestByteRange = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing)
Paramètres
- jobId
- String
ID du travail contenant la tâche.
- taskId
- String
ID de la tâche.
- filePath
- String
Chemin d’accès du fichier à récupérer.
- stream
- Stream
Flux vers lequel copier le contenu du fichier.
- byteRange
- GetFileRequestByteRange
Plage d’octets définissant la section du fichier à copier. En cas d’omission, le fichier entier est téléchargé.
- additionalBehaviors
- IEnumerable<BatchClientBehavior>
Collection d’instances BatchClientBehavior appliquées à la demande de service Batch après le CustomBehaviors.
Remarques
Il s’agit d’une opération de blocage. Pour un équivalent non bloquant, consultez CopyNodeFileContentToStreamAsync(String, String, String, Stream, GetFileRequestByteRange, IEnumerable<BatchClientBehavior>, CancellationToken).
S’applique à
Azure SDK for .NET