Exemple #1
0
        private SearchLabelsBroker(SearchLabelsBroker other)
            : base(other)
        {
            if (other == null)
            {
                return;
            }

            RepositoryId = other.RepositoryId;
            SortField    = other.SortField;
        }
Exemple #2
0
 /// <summary>
 /// Create a searcher.
 /// </summary>
 /// <returns>The searcher that is created.</returns>
 public override Searcher CreateSearcher(GitHubClient client, int maximumCount)
 {
     previous = this;
     return(new LabelSearcher(client, maximumCount, CreateRequest()));
 }