public virtual Pageable <WebPubSub> GetAll(CancellationToken cancellationToken = default) { Page <WebPubSub> FirstPageFunc(int?pageSizeHint) { using var scope = _webPubSubClientDiagnostics.CreateScope("WebPubSubCollection.GetAll"); scope.Start(); try { var response = _webPubSubRestClient.ListByResourceGroup(Id.SubscriptionId, Id.ResourceGroupName, cancellationToken: cancellationToken); return(Page.FromValues(response.Value.Value.Select(value => new WebPubSub(ArmClient, value)), response.Value.NextLink, response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } } Page <WebPubSub> NextPageFunc(string nextLink, int?pageSizeHint) { using var scope = _webPubSubClientDiagnostics.CreateScope("WebPubSubCollection.GetAll"); scope.Start(); try { var response = _webPubSubRestClient.ListByResourceGroupNextPage(nextLink, Id.SubscriptionId, Id.ResourceGroupName, cancellationToken: cancellationToken); return(Page.FromValues(response.Value.Value.Select(value => new WebPubSub(ArmClient, value)), response.Value.NextLink, response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } } return(PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc)); }