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