Esempio n. 1
0
 /// <summary>
 /// Returns the specified page within the specified report from the specified workspace.
 /// </summary>
 /// <remarks>
 /// &lt;br/&gt;**Required scope**: Report.ReadWrite.All or Report.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='groupId'>
 /// The workspace id
 /// </param>
 /// <param name='reportId'>
 /// The report id
 /// </param>
 /// <param name='pageName'>
 /// The page name
 /// </param>
 public static Page GetPage(this IReportsOperations operations, System.Guid groupId, System.Guid reportId, string pageName)
 {
     return(operations.GetPageAsync(groupId, reportId, pageName).GetAwaiter().GetResult());
 }