Microsoft.Azure.Commands.RedisCache.RedisCacheClient.ListCachesUsingNextLink C# (CSharp) Method

ListCachesUsingNextLink() public method

public ListCachesUsingNextLink ( string resourceGroupName, string nextLink ) : IPage
resourceGroupName string
nextLink string
return IPage
        public IPage<RedisResource> ListCachesUsingNextLink(string resourceGroupName, string nextLink)
        {
            if (string.IsNullOrEmpty(resourceGroupName))
            {
                return _client.Redis.ListNext(nextPageLink: nextLink);
            }
            else
            {
                return _client.Redis.ListByResourceGroupNext(nextPageLink: nextLink);
            }
        }