コード例 #1
0
 /// <summary>
 /// Returns a list of tiles within the specified dashboard from **"My
 /// Workspace"**.
 /// </summary>
 /// <remarks>
 /// **Note**: All tile types are supported except for "model tiles", which
 /// include datasets and live tiles that contain an entire report page.
 /// &lt;br/&gt;&lt;br/&gt;**Required scope**: Dashboard.ReadWrite.All or
 /// Dashboard.Read.All &lt;br/&gt;To set the permissions scope, see [Register
 /// an app](https://docs.microsoft.com/power-bi/developer/register-app).
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='dashboardId'>
 /// The dashboard id
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <Tiles> GetTilesAsync(this IDashboardsOperations operations, System.Guid dashboardId, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetTilesWithHttpMessagesAsync(dashboardId, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }