public virtual Pageable <PrivateLinkService> GetAll(CancellationToken cancellationToken = default) { Page <PrivateLinkService> FirstPageFunc(int?pageSizeHint) { using var scope = _clientDiagnostics.CreateScope("PrivateLinkServiceCollection.GetAll"); scope.Start(); try { var response = _privateLinkServicesRestClient.List(Id.SubscriptionId, Id.ResourceGroupName, cancellationToken: cancellationToken); return(Page.FromValues(response.Value.Value.Select(value => new PrivateLinkService(Parent, value)), response.Value.NextLink, response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } } Page <PrivateLinkService> NextPageFunc(string nextLink, int?pageSizeHint) { using var scope = _clientDiagnostics.CreateScope("PrivateLinkServiceCollection.GetAll"); scope.Start(); try { var response = _privateLinkServicesRestClient.ListNextPage(nextLink, Id.SubscriptionId, Id.ResourceGroupName, cancellationToken: cancellationToken); return(Page.FromValues(response.Value.Value.Select(value => new PrivateLinkService(Parent, value)), response.Value.NextLink, response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } } return(PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc)); }