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

FabricClient.QueryClient.GetDeployedServicePackageListAsync 方法

定义

重载

GetDeployedServicePackageListAsync(String, Uri)

获取给定节点和应用程序的已部署服务包。 有关更多功能,请使用 GetDeployedServicePackagePagedListAsync(PagedDeployedServicePackageQueryDescription)。 将来将弃用此方法。

GetDeployedServicePackageListAsync(String, Uri, String)

获取给定节点和应用程序的已部署服务包。 有关更多功能,请使用 GetDeployedServicePackagePagedListAsync(PagedDeployedServicePackageQueryDescription)。 将来将弃用此方法。

GetDeployedServicePackageListAsync(String, Uri, String, TimeSpan, CancellationToken)

获取给定节点和应用程序的已部署服务包。 有关更多功能,请使用 GetDeployedServicePackagePagedListAsync(PagedDeployedServicePackageQueryDescription, TimeSpan, CancellationToken)。 将来将弃用此方法。

GetDeployedServicePackageListAsync(String, Uri)

获取给定节点和应用程序的已部署服务包。 有关更多功能,请使用 GetDeployedServicePackagePagedListAsync(PagedDeployedServicePackageQueryDescription)。 将来将弃用此方法。

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

参数

nodeName
String

节点的名称。 这是区分大小写的完全匹配项。 此值不应为 null 或空,如果节点名称与群集上的任何节点都不匹配,则会引发异常。

applicationName
Uri

应用程序的名称。

返回

表示异步查询操作的任务。

返回的任务包含作为 DeployedServicePackageList的已部署服务包的列表。

例外

此操作的超时时间为 60 秒。

有关处理常见 FabricClient 故障,请参阅 https://docs.microsoft.com/azure/service-fabric/service-fabric-errors-and-exceptions

对于此查询,此异常通常意味着给定的节点名称与群集中的任何节点都不匹配。

适用于

GetDeployedServicePackageListAsync(String, Uri, String)

获取给定节点和应用程序的已部署服务包。 有关更多功能,请使用 GetDeployedServicePackagePagedListAsync(PagedDeployedServicePackageQueryDescription)。 将来将弃用此方法。

public System.Threading.Tasks.Task<System.Fabric.Query.DeployedServicePackageList> GetDeployedServicePackageListAsync (string nodeName, Uri applicationName, string serviceManifestNameFilter);
member this.GetDeployedServicePackageListAsync : string * Uri * string -> System.Threading.Tasks.Task<System.Fabric.Query.DeployedServicePackageList>
Public Function GetDeployedServicePackageListAsync (nodeName As String, applicationName As Uri, serviceManifestNameFilter As String) As Task(Of DeployedServicePackageList)

参数

nodeName
String

节点的名称。 这是区分大小写的完全匹配项。 此值不应为 null 或空,如果节点名称与群集上的任何节点都不匹配,则会引发异常。

applicationName
Uri

应用程序的名称。

serviceManifestNameFilter
String

筛选结果以仅包含与此服务清单名称匹配的结果。

返回

表示异步查询操作的任务。

返回的任务包含作为 DeployedServicePackageList的已部署服务包的列表。

例外

此操作的超时时间为 60 秒。

有关处理常见 FabricClient 故障,请参阅 https://docs.microsoft.com/azure/service-fabric/service-fabric-errors-and-exceptions

对于此查询,此异常通常意味着给定的节点名称与群集中的任何节点都不匹配。

适用于

GetDeployedServicePackageListAsync(String, Uri, String, TimeSpan, CancellationToken)

获取给定节点和应用程序的已部署服务包。 有关更多功能,请使用 GetDeployedServicePackagePagedListAsync(PagedDeployedServicePackageQueryDescription, TimeSpan, CancellationToken)。 将来将弃用此方法。

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

参数

nodeName
String

节点的名称。 这是区分大小写的完全匹配项。 此值不应为 null 或空,如果节点名称与群集上的任何节点都不匹配,则会引发异常。

applicationName
Uri

应用程序的名称。

serviceManifestNameFilter
String

筛选结果以仅包含与此服务清单名称匹配的结果。

timeout
TimeSpan

指定此操作在超时之前必须完成的持续时间。

cancellationToken
CancellationToken

传播有关应取消操作的通知。

返回

表示异步查询操作的任务。

返回的任务包含作为 DeployedServicePackageList的已部署服务包的列表。

例外

对于此查询,此异常通常意味着给定的节点名称与群集中的任何节点都不匹配。

适用于