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:
@@ -16,14 +16,14 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns>A list of <see cref="Contributor"/></returns>
|
||||
/// <returns></returns>
|
||||
IObservable<IEnumerable<Contributor>> GetContributors(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
/// Returns a list of <see cref="Contributor"/> for the given repository
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <returns>A list of <see cref="Contributor"/></returns>
|
||||
/// <returns></returns>
|
||||
IObservable<IEnumerable<Contributor>> GetContributors(int repositoryId);
|
||||
|
||||
/// <summary>
|
||||
@@ -31,14 +31,14 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns>The last year of <see cref="CommitActivity"/></returns>
|
||||
/// <returns></returns>
|
||||
IObservable<CommitActivity> GetCommitActivity(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
/// Returns the last year of commit activity grouped by week.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <returns>The last year of <see cref="CommitActivity"/></returns>
|
||||
/// <returns></returns>
|
||||
IObservable<CommitActivity> GetCommitActivity(int repositoryId);
|
||||
|
||||
/// <summary>
|
||||
@@ -46,14 +46,14 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns>Returns a weekly aggregate of the number additions and deletion</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<CodeFrequency> GetCodeFrequency(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
/// Returns a weekly aggregate of the number of additions and deletions pushed to a repository.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <returns>Returns a weekly aggregate of the number additions and deletion</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<CodeFrequency> GetCodeFrequency(int repositoryId);
|
||||
|
||||
/// <summary>
|
||||
@@ -61,14 +61,14 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns>Returns <see cref="Participation"/>from oldest week to now</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<Participation> GetParticipation(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
/// Returns the total commit counts for the owner and total commit counts in total.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <returns>Returns <see cref="Participation"/>from oldest week to now</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<Participation> GetParticipation(int repositoryId);
|
||||
|
||||
/// <summary>
|
||||
@@ -76,14 +76,14 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns>Returns commit counts per hour in each day</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<PunchCard> GetPunchCard(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
/// Returns a list of the number of commits per hour in each day
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <returns>Returns commit counts per hour in each day</returns>
|
||||
/// <returns></returns>
|
||||
IObservable<PunchCard> GetPunchCard(int repositoryId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user