mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-21 22:55:12 +00:00
cleared <returns> tags
This commit is contained in:
@@ -19,7 +19,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>
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||
IObservable<TreeResponse> Get(string owner, string name, string reference);
|
||||
|
||||
@@ -31,7 +31,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>
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||
IObservable<TreeResponse> Get(int repositoryId, string reference);
|
||||
|
||||
@@ -44,7 +44,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>
|
||||
IObservable<TreeResponse> GetRecursive(string owner, string name, string reference);
|
||||
|
||||
/// <summary>
|
||||
@@ -55,7 +55,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>
|
||||
IObservable<TreeResponse> GetRecursive(int repositoryId, string reference);
|
||||
|
||||
/// <summary>
|
||||
@@ -67,7 +67,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>
|
||||
IObservable<TreeResponse> Create(string owner, string name, NewTree newTree);
|
||||
|
||||
/// <summary>
|
||||
@@ -78,7 +78,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>
|
||||
IObservable<TreeResponse> Create(int repositoryId, NewTree newTree);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user