예제 #1
0
    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));
    }
예제 #2
0
    public Task <HttpOperationResponse <Page <Catalog> > > GetWithHttpMessagesAsync(int?count = null, CancellationToken cancellationToken = default)
    {
        string url = UrlHelper.ApplyCount($"v2/_catalog", count);

        return(GetNextWithHttpMessagesAsync(url, cancellationToken));
    }