public virtual Pageable <IotCentralAppResource> GetAll(CancellationToken cancellationToken = default) { Page <IotCentralAppResource> FirstPageFunc(int?pageSizeHint) { using var scope = _iotCentralAppAppsClientDiagnostics.CreateScope("IotCentralAppCollection.GetAll"); scope.Start(); try { var response = _iotCentralAppAppsRestClient.ListByResourceGroup(Id.SubscriptionId, Id.ResourceGroupName, cancellationToken: cancellationToken); return(Page.FromValues(response.Value.Value.Select(value => new IotCentralAppResource(Client, value)), response.Value.NextLink, response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } } Page <IotCentralAppResource> NextPageFunc(string nextLink, int?pageSizeHint) { using var scope = _iotCentralAppAppsClientDiagnostics.CreateScope("IotCentralAppCollection.GetAll"); scope.Start(); try { var response = _iotCentralAppAppsRestClient.ListByResourceGroupNextPage(nextLink, Id.SubscriptionId, Id.ResourceGroupName, cancellationToken: cancellationToken); 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.CreateEnumerable(FirstPageFunc, NextPageFunc)); }