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