Partager via


ComputeNode.GetRDPFileAsync Méthode

Définition

Surcharges

GetRDPFileAsync(Stream, IEnumerable<BatchClientBehavior>, CancellationToken)

Commence un appel asynchrone pour obtenir des données de fichier RDP ciblant le nœud de calcul du instance actuel et les écrire dans un flux spécifié.

GetRDPFileAsync(String, IEnumerable<BatchClientBehavior>, CancellationToken)

Commence un appel asynchrone pour obtenir des données de fichier RDP ciblant le nœud de calcul du instance actuel et les écrire dans un fichier portant le nom spécifié.

GetRDPFileAsync(Stream, IEnumerable<BatchClientBehavior>, CancellationToken)

Source:
ComputeNode.cs

Commence un appel asynchrone pour obtenir des données de fichier RDP ciblant le nœud de calcul du instance actuel et les écrire dans un flux spécifié.

public System.Threading.Tasks.Task GetRDPFileAsync (System.IO.Stream rdpStream, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default, System.Threading.CancellationToken cancellationToken = default);
member this.GetRDPFileAsync : System.IO.Stream * seq<Microsoft.Azure.Batch.BatchClientBehavior> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function GetRDPFileAsync (rdpStream As Stream, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task

Paramètres

rdpStream
Stream

Flux dans lequel les données du fichier RDP seront écrites. Ce flux ne sera pas fermé ou rewound par cet appel.

additionalBehaviors
IEnumerable<BatchClientBehavior>

Collection d’instances BatchClientBehavior appliquées après customBehaviors sur l’objet actuel.

cancellationToken
CancellationToken

CancellationToken pour contrôler la durée de vie de l’opération asynchrone.

Retours

Objet Task qui représente l’opération asynchrone.

S’applique à

GetRDPFileAsync(String, IEnumerable<BatchClientBehavior>, CancellationToken)

Source:
ComputeNode.cs

Commence un appel asynchrone pour obtenir des données de fichier RDP ciblant le nœud de calcul du instance actuel et les écrire dans un fichier portant le nom spécifié.

public System.Threading.Tasks.Task GetRDPFileAsync (string rdpFileNameToCreate, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default, System.Threading.CancellationToken cancellationToken = default);
member this.GetRDPFileAsync : string * seq<Microsoft.Azure.Batch.BatchClientBehavior> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function GetRDPFileAsync (rdpFileNameToCreate As String, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task

Paramètres

rdpFileNameToCreate
String

Nom du fichier RDP à créer.

additionalBehaviors
IEnumerable<BatchClientBehavior>

Collection d’instances BatchClientBehavior appliquées après customBehaviors sur l’objet actuel.

cancellationToken
CancellationToken

CancellationToken pour contrôler la durée de vie de l’opération asynchrone.

Retours

Objet Task qui représente l’opération asynchrone.

S’applique à