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

AppServicePlanResource.GetWebApps 方法

定义

获取与App 服务计划关联的所有应用的说明。

  • 请求路径/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/sites
  • 操作IdAppServicePlans_ListWebApps
public virtual Azure.Pageable<Azure.ResourceManager.AppService.WebSiteData> GetWebApps (string skipToken = default, string filter = default, string top = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetWebApps : string * string * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.AppService.WebSiteData>
override this.GetWebApps : string * string * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.AppService.WebSiteData>
Public Overridable Function GetWebApps (Optional skipToken As String = Nothing, Optional filter As String = Nothing, Optional top As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of WebSiteData)

参数

skipToken
String

跳到与应用服务计划关联的 Web 应用列表中的 Web 应用。 如果指定,则生成的列表将包含从 (开始的 Web 应用,包括 skipToken) 。 否则,生成的列表包含列表开头的 Web 应用。

filter
String

支持的筛选器:$filter=正在运行的状态 eq。 仅返回当前正在运行的 Web 应用。

top
String

列表页面大小。 如果指定,则对结果进行分页。

cancellationToken
CancellationToken

要使用的取消标记。

返回

可能需要多个服务请求来循环访问的 的 WebSiteData 集合。

适用于