Пример #1
0
 /// <summary>
 /// Gets the list of issues in the repository.
 /// If you issue this call without filtering parameters, the count value contains the total number of issues in the repository's tracker.
 /// If you filter this call, the count value contains the total number of issues that meet the filter criteria.
 /// </summary>
 /// <returns></returns>
 public IssuesInfo ListIssues(IssueSearchParameters parameters = null)
 {
     return(_repositoriesEndPoint.ListIssues(parameters));
 }
Пример #2
0
 /// <summary>
 /// Gets the list of issues in the repository.
 /// If you issue this call without filtering parameters, the count value contains the total number of issues in the repository's tracker.
 /// If you filter this call, the count value contains the total number of issues that meet the filter criteria.
 /// </summary>
 /// <returns></returns>
 public IssuesInfo ListIssues()
 {
     return(_repositoriesEndPoint.ListIssues());
 }