mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 21:55:12 +00:00
cleared <returns>tags
This commit is contained in:
@@ -21,7 +21,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The repository's owner</param>
|
||||
/// <param name="name">The repository's name</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The list of <see cref="Release"/>s for the specified repository.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<Release> GetAll(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
@@ -32,7 +32,7 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The repository's ID</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The list of <see cref="Release"/>s for the specified repository.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<Release> GetAll(int repositoryId);
|
||||
|
||||
/// <summary>
|
||||
@@ -45,7 +45,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="name">The repository's name</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The list of <see cref="Release"/>s for the specified repository.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<Release> GetAll(string owner, string name, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
@@ -57,7 +57,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="repositoryId">The repository's ID</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The list of <see cref="Release"/>s for the specified repository.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<Release> GetAll(int repositoryId, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
@@ -70,7 +70,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="name">The repository's name</param>
|
||||
/// <param name="id">The id of the release</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The <see cref="Release"/> specified by the id</returns>
|
||||
/// <returns></returns>
|
||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")]
|
||||
IObservable<Release> Get(string owner, string name, int id);
|
||||
|
||||
@@ -83,7 +83,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="repositoryId">The repository's ID</param>
|
||||
/// <param name="id">The id of the release</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The <see cref="Release"/> specified by the id</returns>
|
||||
/// <returns></returns>
|
||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")]
|
||||
IObservable<Release> Get(int repositoryId, int id);
|
||||
|
||||
@@ -96,7 +96,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The repository's owner</param>
|
||||
/// <param name="name">The repository's name</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The latest <see cref="Release"/> specified by the repository</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<Release> GetLatest(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
@@ -107,7 +107,7 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The repository's ID</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The latest <see cref="Release"/> specified by the repository</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<Release> GetLatest(int repositoryId);
|
||||
|
||||
/// <summary>
|
||||
@@ -120,7 +120,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="name">The repository's name</param>
|
||||
/// <param name="data">A description of the release to create</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The created <see cref="Release"/>.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<Release> Create(string owner, string name, NewRelease data);
|
||||
|
||||
/// <summary>
|
||||
@@ -132,7 +132,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="repositoryId">The repository's ID</param>
|
||||
/// <param name="data">A description of the release to create</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The created <see cref="Release"/>.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<Release> Create(int repositoryId, NewRelease data);
|
||||
|
||||
/// <summary>
|
||||
@@ -146,7 +146,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="id">The id of the release</param>
|
||||
/// <param name="data">A description of the release to edit</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The updated <see cref="Release"/>.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<Release> Edit(string owner, string name, int id, ReleaseUpdate data);
|
||||
|
||||
/// <summary>
|
||||
@@ -159,7 +159,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="id">The id of the release</param>
|
||||
/// <param name="data">A description of the release to edit</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The updated <see cref="Release"/>.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<Release> Edit(int repositoryId, int id, ReleaseUpdate data);
|
||||
|
||||
/// <summary>
|
||||
@@ -197,7 +197,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="name">The repository's name</param>
|
||||
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The list of <see cref="ReleaseAsset"/> for the specified release of the specified repository.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<ReleaseAsset> GetAllAssets(string owner, string name, int id);
|
||||
|
||||
/// <summary>
|
||||
@@ -209,7 +209,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="repositoryId">The repository's ID</param>
|
||||
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The list of <see cref="ReleaseAsset"/> for the specified release of the specified repository.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<ReleaseAsset> GetAllAssets(int repositoryId, int id);
|
||||
|
||||
/// <summary>
|
||||
@@ -223,7 +223,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The list of <see cref="ReleaseAsset"/> for the specified release of the specified repository.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<ReleaseAsset> GetAllAssets(string owner, string name, int id, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
@@ -236,7 +236,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The list of <see cref="ReleaseAsset"/> for the specified release of the specified repository.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<ReleaseAsset> GetAllAssets(int repositoryId, int id, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
@@ -248,7 +248,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="release">The <see cref="Release"/> to attach the uploaded asset to</param>
|
||||
/// <param name="data">Description of the asset with its data</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The created <see cref="ReleaseAsset"/>.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<ReleaseAsset> UploadAsset(Release release, ReleaseAssetUpload data);
|
||||
|
||||
/// <summary>
|
||||
@@ -260,7 +260,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The repository's owner</param>
|
||||
/// <param name="name">The repository's name</param>
|
||||
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
||||
/// <returns>The <see cref="ReleaseAsset"/> specified by the asset id.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<ReleaseAsset> GetAsset(string owner, string name, int assetId);
|
||||
|
||||
/// <summary>
|
||||
@@ -271,7 +271,7 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The repository's ID</param>
|
||||
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
||||
/// <returns>The <see cref="ReleaseAsset"/> specified by the asset id.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<ReleaseAsset> GetAsset(int repositoryId, int assetId);
|
||||
|
||||
/// <summary>
|
||||
@@ -284,7 +284,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="name">The repository's name</param>
|
||||
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
||||
/// <param name="data">Description of the asset with its amended data</param>
|
||||
/// <returns>The edited <see cref="ReleaseAsset"/>.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<ReleaseAsset> EditAsset(string owner, string name, int assetId, ReleaseAssetUpdate data);
|
||||
|
||||
/// <summary>
|
||||
@@ -296,7 +296,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="repositoryId">The repository's ID</param>
|
||||
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
||||
/// <param name="data">Description of the asset with its amended data</param>
|
||||
/// <returns>The edited <see cref="ReleaseAsset"/>.</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<ReleaseAsset> EditAsset(int repositoryId, int assetId, ReleaseAssetUpdate data);
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user