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

            Page <RouteFilterRule> NextPageFunc(string nextLink, int?pageSizeHint)
            {
                using var scope = _clientDiagnostics.CreateScope("RouteFilterRuleCollection.GetAll");
                scope.Start();
                try
                {
                    var response = _restClient.GetAllByRouteFilterNextPage(nextLink, Id.ResourceGroupName, Id.Name, cancellationToken: cancellationToken);
                    return(Page.FromValues(response.Value.Value.Select(value => new RouteFilterRule(Parent, value)), response.Value.NextLink, response.GetRawResponse()));
                }
                catch (Exception e)
                {
                    scope.Failed(e);
                    throw;
                }
            }

            return(PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc));
        }