コード例 #1
0
 /// <summary>
 /// Search without specifying a keyword
 /// </summary>
 public SearchIssuesRequest()
 {
     Repos = new RepositoryCollection();
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SearchCodeRequest"/> class.
 /// </summary>
 /// <param name="term">The search term.</param>
 public SearchCodeRequest(string term) : base(term)
 {
     Repos = new RepositoryCollection();
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SearchCommitsRequest"/> class.
 /// </summary>
 public SearchCommitsRequest() : base()
 {
     Repos = new RepositoryCollection();
 }