예제 #1
0
 /// <summary>
 /// Replaces all topics for the specified repository.
 /// </summary>
 /// <remarks>
 /// See the <a href="https://developer.github.com/v3/repos/#replace-all-topics-for-a-repository">API documentation</a> for more details
 /// </remarks>
 /// <param name="repositoryId">The Id of the repository</param>
 /// <param name="topics">The topics list to be set</param>
 /// <returns>All topics for the repository.</returns>
 public IObservable <RepositoryTopics> ReplaceAllTopics(long repositoryId, RepositoryTopics topics)
 {
     return(_client.ReplaceAllTopics(repositoryId, topics).ToObservable());
 }