FabricClient.InfrastructureServiceClient.InvokeInfrastructureCommandAsync 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.
Surcharges
InvokeInfrastructureCommandAsync(Uri, String) |
Appelle de manière asynchrone une commande d’administration sur le service d’infrastructure donné instance. |
InvokeInfrastructureCommandAsync(Uri, String, TimeSpan, CancellationToken) |
Appelle de façon asynchrone une commande d’administration sur un service d’infrastructure. |
InvokeInfrastructureCommandAsync(Uri, String)
Appelle de manière asynchrone une commande d’administration sur le service d’infrastructure donné instance.
public System.Threading.Tasks.Task<string> InvokeInfrastructureCommandAsync (Uri serviceName, string command);
member this.InvokeInfrastructureCommandAsync : Uri * string -> System.Threading.Tasks.Task<string>
Public Function InvokeInfrastructureCommandAsync (serviceName As Uri, command As String) As Task(Of String)
Paramètres
- serviceName
- Uri
Nom du service d’infrastructure cible instance.
- command
- String
Texte de la commande à appeler. Le contenu de la commande dépend de l’infrastructure.
Retours
Réponse du service d’infrastructure. Le format de réponse est une chaîne JSON. Le contenu de la réponse dépend de la commande qui a été émise.
S’applique à
InvokeInfrastructureCommandAsync(Uri, String, TimeSpan, CancellationToken)
Appelle de façon asynchrone une commande d’administration sur un service d’infrastructure.
public System.Threading.Tasks.Task<string> InvokeInfrastructureCommandAsync (Uri serviceName, string command, TimeSpan timeout, System.Threading.CancellationToken cancellationToken);
member this.InvokeInfrastructureCommandAsync : Uri * string * TimeSpan * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Function InvokeInfrastructureCommandAsync (serviceName As Uri, command As String, timeout As TimeSpan, cancellationToken As CancellationToken) As Task(Of String)
Paramètres
- serviceName
- Uri
Nom du service d’infrastructure cible instance.
- command
- String
Texte de la commande à appeler. Le contenu de la commande dépend de l’infrastructure.
- timeout
- TimeSpan
La durée maximale de Service Fabric permet à cette opération de se poursuivre avant de retourner un TimeoutException.
- cancellationToken
- CancellationToken
Jeton d’annulation facultatif que l’opération observe. Il peut être utilisé pour envoyer une notification indiquant que l’opération doit être annulée. Notez que l’annulation est un avertissement et que l’opération peut toujours être terminée même si elle est annulée.
Retours
Réponse du service d’infrastructure. Le format de réponse est une chaîne JSON. Le contenu de la réponse dépend de la commande qui a été émise.
S’applique à
Azure SDK for .NET