mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-23 15:45:28 +00:00
cleared <returns> tags
This commit is contained in:
committed by
aedampir@gmail.com
parent
0178b362ce
commit
f9d4616de0
@@ -20,7 +20,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">Tha sha reference of the commit</param>
|
||||
/// <returns>A <see cref="Commit"/> representing commit for specified repository and reference</returns>
|
||||
/// <returns></returns>
|
||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||
Justification = "Method makes a network request")]
|
||||
IObservable<Commit> Get(string owner, string name, string reference);
|
||||
@@ -33,7 +33,7 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="reference">Tha sha reference of the commit</param>
|
||||
/// <returns>A <see cref="Commit"/> representing commit for specified repository and reference</returns>
|
||||
/// <returns></returns>
|
||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||
Justification = "Method makes a network request")]
|
||||
IObservable<Commit> Get(int repositoryId, string reference);
|
||||
@@ -47,7 +47,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="commit">The commit to create</param>
|
||||
/// <returns>A <see cref="IObservable{Commit}"/> of <see cref="Commit"/> representing created commit for specified repository</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<Commit> Create(string owner, string name, NewCommit commit);
|
||||
|
||||
/// <summary>
|
||||
@@ -58,7 +58,7 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="commit">The commit to create</param>
|
||||
/// <returns>A <see cref="IObservable{Commit}"/> of <see cref="Commit"/> representing created commit for specified repository</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<Commit> Create(int repositoryId, NewCommit commit);
|
||||
}
|
||||
}
|
||||
@@ -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">Tha sha reference of the commit</param>
|
||||
/// <returns>A <see cref="Commit"/> representing commit for specified repository and reference</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<Commit> 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">Tha sha reference of the commit</param>
|
||||
/// <returns>A <see cref="Commit"/> representing commit for specified repository and reference</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<Commit> 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="commit">The commit to create</param>
|
||||
/// <returns>A <see cref="IObservable{Commit}"/> of <see cref="Commit"/> representing created commit for specified repository</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<Commit> Create(string owner, string name, NewCommit commit)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -82,7 +82,7 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="commit">The commit to create</param>
|
||||
/// <returns>A <see cref="IObservable{Commit}"/> of <see cref="Commit"/> representing created commit for specified repository</returns>
|
||||
/// <returns></returns>
|
||||
public IObservable<Commit> Create(int repositoryId, NewCommit commit)
|
||||
{
|
||||
Ensure.ArgumentNotNull(commit, "commit");
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Octokit
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="reference">Tha sha reference of the commit</param>
|
||||
/// <returns>A <see cref="Commit"/> representing commit for specified repository and reference</returns>
|
||||
/// <returns></returns>
|
||||
public Task<Commit> Get(string owner, string name, string reference)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -46,7 +46,7 @@ namespace Octokit
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="reference">Tha sha reference of the commit</param>
|
||||
/// <returns>A <see cref="Commit"/> representing commit for specified repository and reference</returns>
|
||||
/// <returns></returns>
|
||||
public Task<Commit> Get(int repositoryId, string reference)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
||||
@@ -63,7 +63,7 @@ namespace Octokit
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="commit">The commit to create</param>
|
||||
/// <returns>A <see cref="Commit"/> representing created commit for specified repository</returns>
|
||||
/// <returns></returns>
|
||||
public Task<Commit> Create(string owner, string name, NewCommit commit)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -81,7 +81,7 @@ namespace Octokit
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="commit">The commit to create</param>
|
||||
/// <returns>A <see cref="Commit"/> representing created commit for specified repository</returns>
|
||||
/// <returns></returns>
|
||||
public Task<Commit> Create(int repositoryId, NewCommit commit)
|
||||
{
|
||||
Ensure.ArgumentNotNull(commit, "commit");
|
||||
|
||||
@@ -20,7 +20,7 @@ namespace Octokit
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="reference">Tha sha reference of the commit</param>
|
||||
/// <returns>A <see cref="Commit"/> representing commit for specified repository and reference</returns>
|
||||
/// <returns></returns>
|
||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||
Justification = "Method makes a network request")]
|
||||
Task<Commit> Get(string owner, string name, string reference);
|
||||
@@ -33,7 +33,7 @@ namespace Octokit
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="reference">Tha sha reference of the commit</param>
|
||||
/// <returns>A <see cref="Commit"/> representing commit for specified repository and reference</returns>
|
||||
/// <returns></returns>
|
||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||
Justification = "Method makes a network request")]
|
||||
Task<Commit> Get(int repositoryId, string reference);
|
||||
@@ -47,7 +47,7 @@ namespace Octokit
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="commit">The commit to create</param>
|
||||
/// <returns>A <see cref="Commit"/> representing created commit for specified repository</returns>
|
||||
/// <returns></returns>
|
||||
Task<Commit> Create(string owner, string name, NewCommit commit);
|
||||
|
||||
/// <summary>
|
||||
@@ -58,7 +58,7 @@ namespace Octokit
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="commit">The commit to create</param>
|
||||
/// <returns>A <see cref="Commit"/> representing created commit for specified repository</returns>
|
||||
/// <returns></returns>
|
||||
Task<Commit> Create(int repositoryId, NewCommit commit);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user