Partager via


FabricClient.QueryClient.GetDeployedApplicationListAsync Méthode

Définition

Surcharges

GetDeployedApplicationListAsync(String, Uri)

Obtient les applications déployées sur un nœud avec le nom d’application spécifié. Pour plus de fonctionnalités, utilisez GetDeployedApplicationPagedListAsync(PagedDeployedApplicationQueryDescription). Cette méthode sera déconseillée à l’avenir.

GetDeployedApplicationListAsync(String)

Obtient la liste des applications déployées. Pour plus de fonctionnalités, utilisez GetDeployedApplicationPagedListAsync(PagedDeployedApplicationQueryDescription). Cette méthode sera déconseillée à l’avenir.

GetDeployedApplicationListAsync(String, Uri, TimeSpan, CancellationToken)

Obtient les applications déployées sur un nœud avec le nom d’application spécifié. Pour plus de fonctionnalités, utilisez GetDeployedApplicationPagedListAsync(PagedDeployedApplicationQueryDescription, TimeSpan, CancellationToken). Cette méthode sera déconseillée à l’avenir.

GetDeployedApplicationListAsync(String, Uri)

Obtient les applications déployées sur un nœud avec le nom d’application spécifié. Pour plus de fonctionnalités, utilisez GetDeployedApplicationPagedListAsync(PagedDeployedApplicationQueryDescription). Cette méthode sera déconseillée à l’avenir.

public System.Threading.Tasks.Task<System.Fabric.Query.DeployedApplicationList> GetDeployedApplicationListAsync (string nodeName, Uri applicationNameFilter);
member this.GetDeployedApplicationListAsync : string * Uri -> System.Threading.Tasks.Task<System.Fabric.Query.DeployedApplicationList>
Public Function GetDeployedApplicationListAsync (nodeName As String, applicationNameFilter As Uri) As Task(Of DeployedApplicationList)

Paramètres

nodeName
String

Nom du nœud pour lequel obtenir des applications. Il s’agit d’une correspondance exacte qui respecte la casse. Cette valeur ne doit pas être null ou vide, et si le nom du nœud ne correspond à aucun nœud sur le cluster, une exception est levée.

applicationNameFilter
Uri

Filtrez les résultats pour inclure uniquement les applications correspondant à ce nom d’application.

Retours

Tâche qui représente l’opération de requête asynchrone.

La tâche retournée contient la liste des applications déployées en tant que DeployedApplicationList.

Exceptions

Cette opération a un délai d’expiration de 60 secondes.

Consultez https://docs.microsoft.com/azure/service-fabric/service-fabric-errors-and-exceptions pour gérer les échecs FabricClient courants.

Consultez également https://docs.microsoft.com/azure/service-fabric/service-fabric-errors-and-exceptions pour gérer les échecs FabricClient courants.

Pour cette requête, cette exception signifie généralement que le nom de nœud donné ne correspond à aucun nœud du cluster.

S’applique à

GetDeployedApplicationListAsync(String)

Obtient la liste des applications déployées. Pour plus de fonctionnalités, utilisez GetDeployedApplicationPagedListAsync(PagedDeployedApplicationQueryDescription). Cette méthode sera déconseillée à l’avenir.

public System.Threading.Tasks.Task<System.Fabric.Query.DeployedApplicationList> GetDeployedApplicationListAsync (string nodeName);
member this.GetDeployedApplicationListAsync : string -> System.Threading.Tasks.Task<System.Fabric.Query.DeployedApplicationList>
Public Function GetDeployedApplicationListAsync (nodeName As String) As Task(Of DeployedApplicationList)

Paramètres

nodeName
String

Nom du nœud pour lequel obtenir des applications. Il s’agit d’une correspondance exacte qui respecte la casse. Cette valeur ne doit pas être null ou vide, et si le nom du nœud ne correspond à aucun nœud sur le cluster, une exception est levée.

Retours

Tâche qui représente l’opération de requête asynchrone.

La tâche retournée contient la liste des applications déployées en tant que DeployedApplicationList.

Exceptions

Cette opération a un délai d’expiration de 60 secondes.

Consultez https://docs.microsoft.com/azure/service-fabric/service-fabric-errors-and-exceptions pour gérer les échecs FabricClient courants.

Consultez également https://docs.microsoft.com/azure/service-fabric/service-fabric-errors-and-exceptions pour gérer les échecs FabricClient courants.

Pour cette requête, cette exception signifie généralement que le nom de nœud donné ne correspond à aucun nœud du cluster.

S’applique à

GetDeployedApplicationListAsync(String, Uri, TimeSpan, CancellationToken)

Obtient les applications déployées sur un nœud avec le nom d’application spécifié. Pour plus de fonctionnalités, utilisez GetDeployedApplicationPagedListAsync(PagedDeployedApplicationQueryDescription, TimeSpan, CancellationToken). Cette méthode sera déconseillée à l’avenir.

public System.Threading.Tasks.Task<System.Fabric.Query.DeployedApplicationList> GetDeployedApplicationListAsync (string nodeName, Uri applicationNameFilter, TimeSpan timeout, System.Threading.CancellationToken cancellationToken);
member this.GetDeployedApplicationListAsync : string * Uri * TimeSpan * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Fabric.Query.DeployedApplicationList>
Public Function GetDeployedApplicationListAsync (nodeName As String, applicationNameFilter As Uri, timeout As TimeSpan, cancellationToken As CancellationToken) As Task(Of DeployedApplicationList)

Paramètres

nodeName
String

Nom du nœud pour lequel obtenir des applications. Il s’agit d’une correspondance exacte qui respecte la casse. Cette valeur ne doit pas être null ou vide, et si le nom du nœud ne correspond à aucun nœud sur le cluster, une exception est levée.

applicationNameFilter
Uri

Filtrez les résultats pour inclure uniquement les applications correspondant à ce nom d’application.

timeout
TimeSpan

Spécifie la durée d’exécution de cette opération avant l’expiration du délai d’attente.

cancellationToken
CancellationToken

Propage une notification indiquant que des opérations doivent être annulées.

Retours

Tâche qui représente l’opération de requête asynchrone.

La tâche retournée contient la liste des applications déployées en tant que DeployedApplicationList.

Exceptions

Consultez également https://docs.microsoft.com/azure/service-fabric/service-fabric-errors-and-exceptions pour gérer les échecs FabricClient courants.

Pour cette requête, cette exception signifie généralement que le nom de nœud donné ne correspond à aucun nœud du cluster.

S’applique à