Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 588 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 588 Bytes

Gerrit.Api.Net

Build Status

Installation

NuGet:

Install-Package Gerrit.Api

Examples

var gerritConfiguration = new GerritConfiguration("username", "password", "gerrit url");
var changesEndPoint = new ChangesEndpoint(gerritConfiguration);

foreach (var change in changesEndPoint.GetAll(new ChangeQueryParameters {NumberOfResults = 10}, ChangeOptionalParameters.Empty))
{
    Console.WriteLine(change.Subject);
}