burned <returns> tags

This commit is contained in:
aedampir@gmail.com
2016-07-06 02:32:42 +07:00
parent 4482c18923
commit eb569736f8
4 changed files with 0 additions and 112 deletions

View File

@@ -21,7 +21,6 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="number">The number of the issue</param>
/// <returns></returns>
IObservable<Label> GetAllForIssue(string owner, string name, int number);
/// <summary>
@@ -32,7 +31,6 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="number">The number of the issue</param>
/// <returns></returns>
IObservable<Label> GetAllForIssue(int repositoryId, int number);
/// <summary>
@@ -45,7 +43,6 @@ namespace Octokit.Reactive
/// <param name="name">The name of the repository</param>
/// <param name="number">The number of the issue</param>
/// <param name="options">Options for changing the API response</param>
/// <returns></returns>
IObservable<Label> GetAllForIssue(string owner, string name, int number, ApiOptions options);
/// <summary>
@@ -57,7 +54,6 @@ namespace Octokit.Reactive
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="number">The number of the issue</param>
/// <param name="options">Options for changing the API response</param>
/// <returns></returns>
IObservable<Label> GetAllForIssue(int repositoryId, int number, ApiOptions options);
/// <summary>
@@ -68,7 +64,6 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <returns></returns>
IObservable<Label> GetAllForRepository(string owner, string name);
/// <summary>
@@ -78,7 +73,6 @@ namespace Octokit.Reactive
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository">API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <returns></returns>
IObservable<Label> GetAllForRepository(int repositoryId);
/// <summary>
@@ -90,7 +84,6 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="options">Options for changing the API response</param>
/// <returns></returns>
IObservable<Label> GetAllForRepository(string owner, string name, ApiOptions options);
/// <summary>
@@ -101,7 +94,6 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="options">Options for changing the API response</param>
/// <returns></returns>
IObservable<Label> GetAllForRepository(int repositoryId, ApiOptions options);
/// <summary>
@@ -113,7 +105,6 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="number">The number of the milestone</param>
/// <returns></returns>
IObservable<Label> GetAllForMilestone(string owner, string name, int number);
/// <summary>
@@ -124,7 +115,6 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="number">The number of the milestone</param>
/// <returns></returns>
IObservable<Label> GetAllForMilestone(int repositoryId, int number);
/// <summary>
@@ -137,7 +127,6 @@ namespace Octokit.Reactive
/// <param name="name">The name of the repository</param>
/// <param name="number">The number of the milestone</param>
/// <param name="options">Options for changing the API response</param>
/// <returns></returns>
IObservable<Label> GetAllForMilestone(string owner, string name, int number, ApiOptions options);
/// <summary>
@@ -149,7 +138,6 @@ namespace Octokit.Reactive
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="number">The number of the milestone</param>
/// <param name="options">Options for changing the API response</param>
/// <returns></returns>
IObservable<Label> GetAllForMilestone(int repositoryId, int number, ApiOptions options);
/// <summary>
@@ -161,7 +149,6 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="labelName">The name of the label</param>
/// <returns></returns>
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
Justification = "Method makes a network request")]
IObservable<Label> Get(string owner, string name, string labelName);
@@ -174,7 +161,6 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="labelName">The name of the label</param>
/// <returns></returns>
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
Justification = "Method makes a network request")]
IObservable<Label> Get(int repositoryId, string labelName);
@@ -188,7 +174,6 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="labelName">The name of the label</param>
/// <returns></returns>
IObservable<Unit> Delete(string owner, string name, string labelName);
/// <summary>
@@ -199,7 +184,6 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="labelName">The name of the label</param>
/// <returns></returns>
IObservable<Unit> Delete(int repositoryId, string labelName);
/// <summary>
@@ -211,7 +195,6 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="newLabel">The data for the label to be created</param>
/// <returns></returns>
IObservable<Label> Create(string owner, string name, NewLabel newLabel);
/// <summary>
@@ -222,7 +205,6 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="newLabel">The data for the label to be created</param>
/// <returns></returns>
IObservable<Label> Create(int repositoryId, NewLabel newLabel);
/// <summary>
@@ -235,7 +217,6 @@ namespace Octokit.Reactive
/// <param name="name">The name of the repository</param>
/// <param name="labelName">The name of the label</param>
/// <param name="labelUpdate">The data for the label to be updated</param>
/// <returns></returns>
IObservable<Label> Update(string owner, string name, string labelName, LabelUpdate labelUpdate);
/// <summary>
@@ -247,7 +228,6 @@ namespace Octokit.Reactive
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="labelName">The name of the label</param>
/// <param name="labelUpdate">The data for the label to be updated</param>
/// <returns></returns>
IObservable<Label> Update(int repositoryId, string labelName, LabelUpdate labelUpdate);
/// <summary>
@@ -260,7 +240,6 @@ namespace Octokit.Reactive
/// <param name="name">The name of the repository</param>
/// <param name="number">The number of the issue</param>
/// <param name="labels">The names of the labels to add</param>
/// <returns></returns>
IObservable<Label> AddToIssue(string owner, string name, int number, string[] labels);
/// <summary>
@@ -272,7 +251,6 @@ namespace Octokit.Reactive
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="number">The number of the issue</param>
/// <param name="labels">The names of the labels to add</param>
/// <returns></returns>
IObservable<Label> AddToIssue(int repositoryId, int number, string[] labels);
/// <summary>
@@ -285,7 +263,6 @@ namespace Octokit.Reactive
/// <param name="name">The name of the repository</param>
/// <param name="number">The number of the issue</param>
/// <param name="labelName">The name of the label to remove</param>
/// <returns></returns>
IObservable<Unit> RemoveFromIssue(string owner, string name, int number, string labelName);
/// <summary>
@@ -297,7 +274,6 @@ namespace Octokit.Reactive
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="number">The number of the issue</param>
/// <param name="labelName">The name of the label to remove</param>
/// <returns></returns>
IObservable<Unit> RemoveFromIssue(int repositoryId, int number, string labelName);
/// <summary>
@@ -310,7 +286,6 @@ namespace Octokit.Reactive
/// <param name="name">The name of the repository</param>
/// <param name="number">The number of the issue</param>
/// <param name="labels">The names of the labels to set</param>
/// <returns></returns>
IObservable<Label> ReplaceAllForIssue(string owner, string name, int number, string[] labels);
/// <summary>
@@ -322,7 +297,6 @@ namespace Octokit.Reactive
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="number">The number of the issue</param>
/// <param name="labels">The names of the labels to set</param>
/// <returns></returns>
IObservable<Label> ReplaceAllForIssue(int repositoryId, int number, string[] labels);
/// <summary>
@@ -334,7 +308,6 @@ namespace Octokit.Reactive
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="number">The number of the issue</param>
/// <returns></returns>
IObservable<Unit> RemoveAllFromIssue(string owner, string name, int number);
/// <summary>
@@ -345,7 +318,6 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="number">The number of the issue</param>
/// <returns></returns>
IObservable<Unit> RemoveAllFromIssue(int repositoryId, int number);
}
}