mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-22 15:15:19 +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="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</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")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||||
IObservable<TreeResponse> Get(string owner, string name, string reference);
|
IObservable<TreeResponse> Get(string owner, string name, string reference);
|
||||||
|
|
||||||
@@ -31,7 +31,7 @@ namespace Octokit.Reactive
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</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")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||||
IObservable<TreeResponse> Get(int repositoryId, string reference);
|
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="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</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);
|
IObservable<TreeResponse> GetRecursive(string owner, string name, string reference);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -55,7 +55,7 @@ namespace Octokit.Reactive
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</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);
|
IObservable<TreeResponse> GetRecursive(int repositoryId, string reference);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -67,7 +67,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="newTree">The value of the new tree</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);
|
IObservable<TreeResponse> Create(string owner, string name, NewTree newTree);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -78,7 +78,7 @@ namespace Octokit.Reactive
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="newTree">The value of the new tree</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);
|
IObservable<TreeResponse> Create(int repositoryId, NewTree newTree);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -29,7 +29,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</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)
|
public IObservable<TreeResponse> Get(string owner, string name, string reference)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -47,7 +47,7 @@ namespace Octokit.Reactive
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</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)
|
public IObservable<TreeResponse> Get(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
||||||
@@ -64,7 +64,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</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)
|
public IObservable<TreeResponse> GetRecursive(string owner, string name, string reference)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -82,7 +82,7 @@ namespace Octokit.Reactive
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</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)
|
public IObservable<TreeResponse> GetRecursive(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
||||||
@@ -99,7 +99,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="newTree">The value of the new tree</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)
|
public IObservable<TreeResponse> Create(string owner, string name, NewTree newTree)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -117,7 +117,7 @@ namespace Octokit.Reactive
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="newTree">The value of the new tree</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)
|
public IObservable<TreeResponse> Create(int repositoryId, NewTree newTree)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(newTree, "newTree");
|
Ensure.ArgumentNotNull(newTree, "newTree");
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</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")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||||
Task<TreeResponse> Get(string owner, string name, string reference);
|
Task<TreeResponse> Get(string owner, string name, string reference);
|
||||||
|
|
||||||
@@ -31,7 +31,7 @@ namespace Octokit
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</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")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||||
Task<TreeResponse> Get(int repositoryId, string reference);
|
Task<TreeResponse> Get(int repositoryId, string reference);
|
||||||
|
|
||||||
@@ -44,7 +44,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</param>
|
/// <param name="reference">The SHA that references the tree</param>
|
||||||
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
|
/// <returns></returns>
|
||||||
Task<TreeResponse> GetRecursive(string owner, string name, string reference);
|
Task<TreeResponse> GetRecursive(string owner, string name, string reference);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -55,7 +55,7 @@ namespace Octokit
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</param>
|
/// <param name="reference">The SHA that references the tree</param>
|
||||||
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
|
/// <returns></returns>
|
||||||
Task<TreeResponse> GetRecursive(int repositoryId, string reference);
|
Task<TreeResponse> GetRecursive(int repositoryId, string reference);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -67,7 +67,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="newTree">The value of the new tree</param>
|
/// <param name="newTree">The value of the new tree</param>
|
||||||
/// <returns>The <see cref="TreeResponse"/> that was just created.</returns>
|
/// <returns></returns>
|
||||||
Task<TreeResponse> Create(string owner, string name, NewTree newTree);
|
Task<TreeResponse> Create(string owner, string name, NewTree newTree);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -78,7 +78,7 @@ namespace Octokit
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="newTree">The value of the new tree</param>
|
/// <param name="newTree">The value of the new tree</param>
|
||||||
/// <returns>The <see cref="TreeResponse"/> that was just created.</returns>
|
/// <returns></returns>
|
||||||
Task<TreeResponse> Create(int repositoryId, NewTree newTree);
|
Task<TreeResponse> Create(int repositoryId, NewTree newTree);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -30,7 +30,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</param>
|
/// <param name="reference">The SHA that references the tree</param>
|
||||||
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
|
/// <returns></returns>
|
||||||
public Task<TreeResponse> Get(string owner, string name, string reference)
|
public Task<TreeResponse> Get(string owner, string name, string reference)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -48,7 +48,7 @@ namespace Octokit
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</param>
|
/// <param name="reference">The SHA that references the tree</param>
|
||||||
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
|
/// <returns></returns>
|
||||||
public Task<TreeResponse> Get(int repositoryId, string reference)
|
public Task<TreeResponse> Get(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
||||||
@@ -65,7 +65,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</param>
|
/// <param name="reference">The SHA that references the tree</param>
|
||||||
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
|
/// <returns></returns>
|
||||||
public Task<TreeResponse> GetRecursive(string owner, string name, string reference)
|
public Task<TreeResponse> GetRecursive(string owner, string name, string reference)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -83,7 +83,7 @@ namespace Octokit
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</param>
|
/// <param name="reference">The SHA that references the tree</param>
|
||||||
/// <returns>The <see cref="TreeResponse"/> for the specified Tree.</returns>
|
/// <returns></returns>
|
||||||
public Task<TreeResponse> GetRecursive(int repositoryId, string reference)
|
public Task<TreeResponse> GetRecursive(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
||||||
@@ -100,7 +100,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="newTree">The value of the new tree</param>
|
/// <param name="newTree">The value of the new tree</param>
|
||||||
/// <returns>The <see cref="TreeResponse"/> that was just created.</returns>
|
/// <returns></returns>
|
||||||
public Task<TreeResponse> Create(string owner, string name, NewTree newTree)
|
public Task<TreeResponse> Create(string owner, string name, NewTree newTree)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -123,7 +123,7 @@ namespace Octokit
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="newTree">The value of the new tree</param>
|
/// <param name="newTree">The value of the new tree</param>
|
||||||
/// <returns>The <see cref="TreeResponse"/> that was just created.</returns>
|
/// <returns></returns>
|
||||||
public Task<TreeResponse> Create(int repositoryId, NewTree newTree)
|
public Task<TreeResponse> Create(int repositoryId, NewTree newTree)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(newTree, "newTree");
|
Ensure.ArgumentNotNull(newTree, "newTree");
|
||||||
|
|||||||
Reference in New Issue
Block a user