public virtual AsyncPageable <IotCentralAppResource> GetAllAsync(CancellationToken cancellationToken = default) { async Task <Page <IotCentralAppResource> > FirstPageFunc(int?pageSizeHint) { using var scope = _iotCentralAppAppsClientDiagnostics.CreateScope("IotCentralAppCollection.GetAll"); scope.Start(); try { var response = await _iotCentralAppAppsRestClient.ListByResourceGroupAsync(Id.SubscriptionId, Id.ResourceGroupName, cancellationToken : cancellationToken).ConfigureAwait(false); return(Page.FromValues(response.Value.Value.Select(value => new IotCentralAppResource(Client, value)), response.Value.NextLink, response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } } async Task <Page <IotCentralAppResource> > NextPageFunc(string nextLink, int?pageSizeHint) { using var scope = _iotCentralAppAppsClientDiagnostics.CreateScope("IotCentralAppCollection.GetAll"); scope.Start(); try { var response = await _iotCentralAppAppsRestClient.ListByResourceGroupNextPageAsync(nextLink, Id.SubscriptionId, Id.ResourceGroupName, cancellationToken : cancellationToken).ConfigureAwait(false); return(Page.FromValues(response.Value.Value.Select(value => new IotCentralAppResource(Client, value)), response.Value.NextLink, response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } } return(PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc)); }