public Task <HttpOperationResponse <Page <RepositoryTags> > > GetWithHttpMessagesAsync( string repositoryName, int?count = null, CancellationToken cancellationToken = default) { string url = UrlHelper.ApplyCount($"v2/{repositoryName}/tags/list", count); return(GetNextWithHttpMessagesAsync(url, cancellationToken)); }
public Task <HttpOperationResponse <Page <Catalog> > > GetWithHttpMessagesAsync(int?count = null, CancellationToken cancellationToken = default) { string url = UrlHelper.ApplyCount($"v2/_catalog", count); return(GetNextWithHttpMessagesAsync(url, cancellationToken)); }