mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 03:55:55 +00:00
cleared <returns> tags
This commit is contained in:
@@ -29,7 +29,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="reference">The SHA that references the tree</param>
|
||||
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<TreeResponse> Get(string owner, string name, string reference)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -47,7 +47,7 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="reference">The SHA that references the tree</param>
|
||||
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<TreeResponse> Get(int repositoryId, string reference)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
||||
@@ -64,7 +64,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="reference">The SHA that references the tree</param>
|
||||
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<TreeResponse> GetRecursive(string owner, string name, string reference)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -82,7 +82,7 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="reference">The SHA that references the tree</param>
|
||||
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<TreeResponse> GetRecursive(int repositoryId, string reference)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
||||
@@ -99,7 +99,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="newTree">The value of the new tree</param>
|
||||
/// <returns>The <see cref="TreeResponse"/> that was just created.</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<TreeResponse> Create(string owner, string name, NewTree newTree)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -117,7 +117,7 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="newTree">The value of the new tree</param>
|
||||
/// <returns>The <see cref="TreeResponse"/> that was just created.</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<TreeResponse> Create(int repositoryId, NewTree newTree)
|
||||
{
|
||||
Ensure.ArgumentNotNull(newTree, "newTree");
|
||||
|
||||
Reference in New Issue
Block a user