示例#1
0
 /// <summary>
 /// Gets a list of repositories of the user matching the specified <paramref name="options"/>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 /// <returns>An instance of <see cref="BitBucketGetRepositoriesResponse"/> representing the response.</returns>
 public BitBucketGetRepositoriesResponse GetRepositories(BitBucketGetRepositoriesOptions options)
 {
     return(BitBucketGetRepositoriesResponse.ParseResponse(Raw.GetRepositories(options)));
 }
示例#2
0
 /// <summary>
 /// Gets a list of repositories of the user with the specified <paramref name="username"/>.
 /// </summary>
 /// <param name="username">The username of the user.</param>
 /// <returns>An instance of <see cref="BitBucketGetRepositoriesResponse"/> representing the response.</returns>
 public BitBucketGetRepositoriesResponse GetRepositories(string username)
 {
     return(BitBucketGetRepositoriesResponse.ParseResponse(Raw.GetRepositories(username)));
 }