diff --git a/Octokit/Clients/AssigneesClient.cs b/Octokit/Clients/AssigneesClient.cs
index 46e9cb4e..110a37dc 100644
--- a/Octokit/Clients/AssigneesClient.cs
+++ b/Octokit/Clients/AssigneesClient.cs
@@ -26,7 +26,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
///
- public Task> GetForRepository(string owner, string name)
+ public Task> GetAllForRepository(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");
diff --git a/Octokit/Clients/EventsClient.cs b/Octokit/Clients/EventsClient.cs
index c5808349..65e420f0 100644
--- a/Octokit/Clients/EventsClient.cs
+++ b/Octokit/Clients/EventsClient.cs
@@ -89,7 +89,7 @@ namespace Octokit
///
/// The login of the user
/// All the s that a particular user has received.
- public Task> GetUserReceived(string user)
+ public Task> GetAllUserReceived(string user)
{
Ensure.ArgumentNotNullOrEmptyString(user, "user");
@@ -104,7 +104,7 @@ namespace Octokit
///
/// The login of the user
/// All the s that a particular user has received.
- public Task> GetUserReceivedPublic(string user)
+ public Task> GetAllUserReceivedPublic(string user)
{
Ensure.ArgumentNotNullOrEmptyString(user, "user");
@@ -119,7 +119,7 @@ namespace Octokit
///
/// The login of the user
/// All the s that a particular user has performed.
- public Task> GetUserPerformed(string user)
+ public Task> GetAllUserPerformed(string user)
{
Ensure.ArgumentNotNullOrEmptyString(user, "user");
@@ -134,7 +134,7 @@ namespace Octokit
///
/// The login of the user
/// All the public s that a particular user has performed.
- public Task> GetUserPerformedPublic(string user)
+ public Task> GetAllUserPerformedPublic(string user)
{
Ensure.ArgumentNotNullOrEmptyString(user, "user");
@@ -150,7 +150,7 @@ namespace Octokit
/// The login of the user
/// The name of the organization
/// All the public s that are associated with an organization.
- public Task> GetForAnOrganization(string user, string organization)
+ public Task> GetAllForAnOrganization(string user, string organization)
{
Ensure.ArgumentNotNullOrEmptyString(user, "user");
Ensure.ArgumentNotNullOrEmptyString(organization, "organization");
diff --git a/Octokit/Clients/FollowersClient.cs b/Octokit/Clients/FollowersClient.cs
index 9059371c..9d85c4dc 100644
--- a/Octokit/Clients/FollowersClient.cs
+++ b/Octokit/Clients/FollowersClient.cs
@@ -54,7 +54,7 @@ namespace Octokit
/// See the API documentation for more information.
///
/// A of s that the authenticated user follows.
- public Task> GetFollowingForCurrent()
+ public Task> GetAllFollowingForCurrent()
{
return ApiConnection.GetAll(ApiUrls.Following());
}
@@ -67,7 +67,7 @@ namespace Octokit
/// See the API documentation for more information.
///
/// A of s that the passed user follows.
- public Task> GetFollowing(string login)
+ public Task> GetAllFollowing(string login)
{
Ensure.ArgumentNotNullOrEmptyString(login, "login");
diff --git a/Octokit/Clients/GistCommentsClient.cs b/Octokit/Clients/GistCommentsClient.cs
index f32a055e..47487159 100644
--- a/Octokit/Clients/GistCommentsClient.cs
+++ b/Octokit/Clients/GistCommentsClient.cs
@@ -37,7 +37,7 @@ namespace Octokit
/// http://developer.github.com/v3/gists/comments/#list-comments-on-a-gist
/// The id of the gist
/// Task{IReadOnlyList{GistComment}}.
- public Task> GetForGist(string gistId)
+ public Task> GetAllForGist(string gistId)
{
return ApiConnection.GetAll(ApiUrls.GistComments(gistId));
}
diff --git a/Octokit/Clients/IAssigneesClient.cs b/Octokit/Clients/IAssigneesClient.cs
index 2d629751..2a1e0cdf 100644
--- a/Octokit/Clients/IAssigneesClient.cs
+++ b/Octokit/Clients/IAssigneesClient.cs
@@ -17,7 +17,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
///
- Task> GetForRepository(string owner, string name);
+ Task> GetAllForRepository(string owner, string name);
///
/// Checks to see if a user is an assignee for a repository.
diff --git a/Octokit/Clients/IEventsClient.cs b/Octokit/Clients/IEventsClient.cs
index 8213b5bd..ec148815 100644
--- a/Octokit/Clients/IEventsClient.cs
+++ b/Octokit/Clients/IEventsClient.cs
@@ -61,7 +61,7 @@ namespace Octokit
///
/// The login of the user
/// All the s that a particular user has received.
- Task> GetUserReceived(string user);
+ Task> GetAllUserReceived(string user);
///
/// Gets all the events that have been received by a given user.
@@ -71,7 +71,7 @@ namespace Octokit
///
/// The login of the user
/// All the s that a particular user has received.
- Task> GetUserReceivedPublic(string user);
+ Task> GetAllUserReceivedPublic(string user);
///
/// Gets all the events that have been performed by a given user.
@@ -81,7 +81,7 @@ namespace Octokit
///
/// The login of the user
/// All the s that a particular user has performed.
- Task> GetUserPerformed(string user);
+ Task> GetAllUserPerformed(string user);
///
/// Gets all the public events that have been performed by a given user.
@@ -91,7 +91,7 @@ namespace Octokit
///
/// The login of the user
/// All the public s that a particular user has performed.
- Task> GetUserPerformedPublic(string user);
+ Task> GetAllUserPerformedPublic(string user);
///
/// Gets all the events that are associated with an organization.
@@ -102,6 +102,6 @@ namespace Octokit
/// The login of the user
/// The name of the organization
/// All the public s that are associated with an organization.
- Task> GetForAnOrganization(string user, string organization);
+ Task> GetAllForAnOrganization(string user, string organization);
}
}
\ No newline at end of file
diff --git a/Octokit/Clients/IFollowersClient.cs b/Octokit/Clients/IFollowersClient.cs
index b73dc583..00f7b7e0 100644
--- a/Octokit/Clients/IFollowersClient.cs
+++ b/Octokit/Clients/IFollowersClient.cs
@@ -40,7 +40,7 @@ namespace Octokit
///
/// A of s that the authenticated user follows.
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")]
- Task> GetFollowingForCurrent();
+ Task> GetAllFollowingForCurrent();
///
/// List who a user is following
@@ -50,7 +50,7 @@ namespace Octokit
/// See the API documentation for more information.
///
/// A of s that the passed user follows.
- Task> GetFollowing(string login);
+ Task> GetAllFollowing(string login);
///
/// Check if the authenticated user follows another user
diff --git a/Octokit/Clients/IGistCommentsClient.cs b/Octokit/Clients/IGistCommentsClient.cs
index af11e668..3bcd814a 100644
--- a/Octokit/Clients/IGistCommentsClient.cs
+++ b/Octokit/Clients/IGistCommentsClient.cs
@@ -29,7 +29,7 @@ namespace Octokit
/// http://developer.github.com/v3/gists/comments/#list-comments-on-a-gist
/// The id of the gist
/// Task{IReadOnlyList{GistComment}}.
- Task> GetForGist(string gistId);
+ Task> GetAllForGist(string gistId);
///
/// Creates a comment for the gist with the specified id.
diff --git a/Octokit/Clients/IIssueCommentsClient.cs b/Octokit/Clients/IIssueCommentsClient.cs
index dd3c2795..fdfbc389 100644
--- a/Octokit/Clients/IIssueCommentsClient.cs
+++ b/Octokit/Clients/IIssueCommentsClient.cs
@@ -31,7 +31,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
///
- Task> GetForRepository(string owner, string name);
+ Task> GetAllForRepository(string owner, string name);
///
/// Gets Issue Comments for a specified Issue.
@@ -41,7 +41,7 @@ namespace Octokit
/// The name of the repository
/// The issue number
///
- Task> GetForIssue(string owner, string name, int number);
+ Task> GetAllForIssue(string owner, string name, int number);
///
/// Creates a new Issue Comment for a specified Issue.
diff --git a/Octokit/Clients/IIssuesClient.cs b/Octokit/Clients/IIssuesClient.cs
index b0071f2c..bc0e362c 100644
--- a/Octokit/Clients/IIssuesClient.cs
+++ b/Octokit/Clients/IIssuesClient.cs
@@ -126,7 +126,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
///
- Task> GetForRepository(string owner, string name);
+ Task> GetAllForRepository(string owner, string name);
///
/// Gets issues for a repository.
@@ -138,7 +138,7 @@ namespace Octokit
/// The name of the repository
/// Used to filter and sort the list of issues returned
///
- Task> GetForRepository(string owner, string name, RepositoryIssueRequest request);
+ Task> GetAllForRepository(string owner, string name, RepositoryIssueRequest request);
///
/// Creates an issue for the specified repository. Any user with pull access to a repository can create an
diff --git a/Octokit/Clients/IIssuesEventsClient.cs b/Octokit/Clients/IIssuesEventsClient.cs
index 6b711a9c..ae51a608 100644
--- a/Octokit/Clients/IIssuesEventsClient.cs
+++ b/Octokit/Clients/IIssuesEventsClient.cs
@@ -22,7 +22,7 @@ namespace Octokit
/// The name of the repository
/// The issue number
///
- Task> GetForIssue(string owner, string name, int number);
+ Task> GetAllForIssue(string owner, string name, int number);
///
/// Gets all events for the repository.
@@ -33,7 +33,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
///
- Task> GetForRepository(string owner, string name);
+ Task> GetAllForRepository(string owner, string name);
///
/// Gets a single event
diff --git a/Octokit/Clients/IIssuesLabelsClient.cs b/Octokit/Clients/IIssuesLabelsClient.cs
index 1976953d..3f4169db 100644
--- a/Octokit/Clients/IIssuesLabelsClient.cs
+++ b/Octokit/Clients/IIssuesLabelsClient.cs
@@ -16,7 +16,7 @@ namespace Octokit
/// The name of the repository
/// The number of the issue
/// The list of labels
- Task> GetForIssue(string owner, string repo, int number);
+ Task> GetAllForIssue(string owner, string repo, int number);
///
/// Gets all labels for the repository.
@@ -27,7 +27,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The list of labels
- Task> GetForRepository(string owner, string repo);
+ Task> GetAllForRepository(string owner, string repo);
///
/// Gets a single Label by name.
@@ -141,6 +141,6 @@ namespace Octokit
/// The name of the repository
/// The number of the milestone
///
- Task> GetForMilestone(string owner, string repo, int number);
+ Task> GetAllForMilestone(string owner, string repo, int number);
}
}
\ No newline at end of file
diff --git a/Octokit/Clients/IMilestonesClient.cs b/Octokit/Clients/IMilestonesClient.cs
index d0635db4..5ef5b41e 100644
--- a/Octokit/Clients/IMilestonesClient.cs
+++ b/Octokit/Clients/IMilestonesClient.cs
@@ -32,7 +32,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
///
- Task> GetForRepository(string owner, string name);
+ Task> GetAllForRepository(string owner, string name);
///
/// Gets all open milestones for the repository.
@@ -44,7 +44,7 @@ namespace Octokit
/// The name of the repository
/// Used to filter and sort the list of Milestones returned
///
- Task> GetForRepository(string owner, string name, MilestoneRequest request);
+ Task> GetAllForRepository(string owner, string name, MilestoneRequest request);
///
/// Creates a milestone for the specified repository. Any user with pull access to a repository can create an
diff --git a/Octokit/Clients/IMiscellaneousClient.cs b/Octokit/Clients/IMiscellaneousClient.cs
index 50104168..04153a31 100644
--- a/Octokit/Clients/IMiscellaneousClient.cs
+++ b/Octokit/Clients/IMiscellaneousClient.cs
@@ -20,7 +20,7 @@ namespace Octokit
/// Thrown when a general API error occurs.
/// An of emoji and their URI.
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")]
- Task> GetEmojis();
+ Task> GetAllEmojis();
///
/// Gets the rendered Markdown for the specified plain-text Markdown document.
@@ -35,7 +35,7 @@ namespace Octokit
///
/// A list of template names
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")]
- Task> GetGitIgnoreTemplates();
+ Task> GetAllGitIgnoreTemplates();
///
/// Retrieves the source for a single GitIgnore template
@@ -51,7 +51,7 @@ namespace Octokit
/// This is a PREVIEW API! Use it at your own risk.
/// A list of licenses available on the site
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")]
- Task> GetLicenses();
+ Task> GetAllLicenses();
///
/// Retrieves a license based on the licence key such as "mit"
diff --git a/Octokit/Clients/IOrganizationMembersClient.cs b/Octokit/Clients/IOrganizationMembersClient.cs
index 1e849670..29609af7 100644
--- a/Octokit/Clients/IOrganizationMembersClient.cs
+++ b/Octokit/Clients/IOrganizationMembersClient.cs
@@ -72,7 +72,7 @@ namespace Octokit
/// http://developer.github.com/v3/orgs/members/#public-members-list
/// The login for the organization
///
- Task> GetPublic(string org);
+ Task> GetAllPublic(string org);
///
/// Check if a user is, publicly or privately, a member of the organization.
diff --git a/Octokit/Clients/IPullRequestReviewCommentsClient.cs b/Octokit/Clients/IPullRequestReviewCommentsClient.cs
index f2d73c51..a58b3c1f 100644
--- a/Octokit/Clients/IPullRequestReviewCommentsClient.cs
+++ b/Octokit/Clients/IPullRequestReviewCommentsClient.cs
@@ -28,7 +28,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The list of s for the specified repository
- Task> GetForRepository(string owner, string name);
+ Task> GetAllForRepository(string owner, string name);
///
/// Gets a list of the pull request review comments in a specified repository.
@@ -38,7 +38,7 @@ namespace Octokit
/// The name of the repository
/// The sorting parameters
/// The list of s for the specified repository
- Task> GetForRepository(string owner, string name, PullRequestReviewCommentRequest request);
+ Task> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request);
///
/// Gets a single pull request review comment by number.
diff --git a/Octokit/Clients/IPullRequestsClient.cs b/Octokit/Clients/IPullRequestsClient.cs
index e612850b..0ed1cd25 100644
--- a/Octokit/Clients/IPullRequestsClient.cs
+++ b/Octokit/Clients/IPullRequestsClient.cs
@@ -31,7 +31,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// A of s which are currently open
- Task> GetForRepository(string owner, string name);
+ Task> GetAllForRepository(string owner, string name);
///
/// Query pull requests for the repository based on criteria
@@ -43,7 +43,7 @@ namespace Octokit
/// The name of the repository
/// Used to filter and sort the list of pull requests returned
/// A of s which match the criteria
- Task> GetForRepository(string owner, string name, PullRequestRequest request);
+ Task> GetAllForRepository(string owner, string name, PullRequestRequest request);
///
/// Create a pull request for the specified repository.
diff --git a/Octokit/Clients/IReleasesClient.cs b/Octokit/Clients/IReleasesClient.cs
index bfbbc96c..742806ad 100644
--- a/Octokit/Clients/IReleasesClient.cs
+++ b/Octokit/Clients/IReleasesClient.cs
@@ -91,7 +91,7 @@ namespace Octokit
/// The id of the .
/// Thrown when a general API error occurs.
/// The list of for the specified release of the specified repository.
- Task> GetAssets(string owner, string name, int id);
+ Task> GetAllAssets(string owner, string name, int id);
///
/// Uploads a for the specified release.
diff --git a/Octokit/Clients/IRepositoryCommentsClient.cs b/Octokit/Clients/IRepositoryCommentsClient.cs
index 11a67545..3156870f 100644
--- a/Octokit/Clients/IRepositoryCommentsClient.cs
+++ b/Octokit/Clients/IRepositoryCommentsClient.cs
@@ -31,7 +31,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
///
- Task> GetForRepository(string owner, string name);
+ Task> GetAllForRepository(string owner, string name);
///
/// Gets Commit Comments for a specified Commit.
@@ -41,7 +41,7 @@ namespace Octokit
/// The name of the repository
/// The sha of the commit
///
- Task> GetForCommit(string owner, string name, string sha);
+ Task> GetAllForCommit(string owner, string name, string sha);
///
/// Creates a new Commit Comment for a specified Commit.
diff --git a/Octokit/Clients/IRepositoryContentsClient.cs b/Octokit/Clients/IRepositoryContentsClient.cs
index 89dfa3ec..84b7db96 100644
--- a/Octokit/Clients/IRepositoryContentsClient.cs
+++ b/Octokit/Clients/IRepositoryContentsClient.cs
@@ -20,7 +20,7 @@ namespace Octokit
///
/// A collection of representing the content at the specified path
///
- Task> GetContents(string owner, string name, string path);
+ Task> GetAllContents(string owner, string name, string path);
///
/// Gets the preferred README for the specified repository.
diff --git a/Octokit/Clients/ITeamsClient.cs b/Octokit/Clients/ITeamsClient.cs
index 566fc87c..63f40fa2 100644
--- a/Octokit/Clients/ITeamsClient.cs
+++ b/Octokit/Clients/ITeamsClient.cs
@@ -41,7 +41,7 @@ namespace Octokit
/// https://developer.github.com/v3/orgs/teams/#list-team-members
///
/// A list of the team's member s.
- Task> GetMembers(int id);
+ Task> GetAllMembers(int id);
///
/// Returns newly created for the current org.
@@ -92,7 +92,7 @@ namespace Octokit
///
/// Thrown when a general API error occurs.
/// The team's repositories
- Task> GetRepositories(int id);
+ Task> GetAllRepositories(int id);
///
/// Add a repository to the team
diff --git a/Octokit/Clients/IssueCommentsClient.cs b/Octokit/Clients/IssueCommentsClient.cs
index 72bdfbf9..1b84f8b2 100644
--- a/Octokit/Clients/IssueCommentsClient.cs
+++ b/Octokit/Clients/IssueCommentsClient.cs
@@ -42,7 +42,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
///
- public Task> GetForRepository(string owner, string name)
+ public Task> GetAllForRepository(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");
@@ -58,7 +58,7 @@ namespace Octokit
/// The name of the repository
/// The issue number
///
- public Task> GetForIssue(string owner, string name, int number)
+ public Task> GetAllForIssue(string owner, string name, int number)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");
diff --git a/Octokit/Clients/IssuesClient.cs b/Octokit/Clients/IssuesClient.cs
index 4b96db0b..2dbabc89 100644
--- a/Octokit/Clients/IssuesClient.cs
+++ b/Octokit/Clients/IssuesClient.cs
@@ -164,9 +164,9 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
///
- public Task> GetForRepository(string owner, string name)
+ public Task> GetAllForRepository(string owner, string name)
{
- return GetForRepository(owner, name, new RepositoryIssueRequest());
+ return GetAllForRepository(owner, name, new RepositoryIssueRequest());
}
///
@@ -179,7 +179,7 @@ namespace Octokit
/// The name of the repository
/// Used to filter and sort the list of issues returned
///
- public Task> GetForRepository(string owner, string name,
+ public Task> GetAllForRepository(string owner, string name,
RepositoryIssueRequest request)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
diff --git a/Octokit/Clients/IssuesEventsClient.cs b/Octokit/Clients/IssuesEventsClient.cs
index c476683b..836a2913 100644
--- a/Octokit/Clients/IssuesEventsClient.cs
+++ b/Octokit/Clients/IssuesEventsClient.cs
@@ -27,7 +27,7 @@ namespace Octokit
/// The name of the repository
/// The issue number
///
- public Task> GetForIssue(string owner, string name, int number)
+ public Task> GetAllForIssue(string owner, string name, int number)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");
@@ -44,7 +44,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
///
- public Task> GetForRepository(string owner, string name)
+ public Task> GetAllForRepository(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");
diff --git a/Octokit/Clients/IssuesLabelsClient.cs b/Octokit/Clients/IssuesLabelsClient.cs
index ee640419..36a68c19 100644
--- a/Octokit/Clients/IssuesLabelsClient.cs
+++ b/Octokit/Clients/IssuesLabelsClient.cs
@@ -20,7 +20,7 @@ namespace Octokit
/// The name of the repository
/// The number of the issue
/// The list of labels
- public Task> GetForIssue(string owner, string repo, int number)
+ public Task> GetAllForIssue(string owner, string repo, int number)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(repo, "repo");
@@ -37,7 +37,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The list of labels
- public Task> GetForRepository(string owner, string repo)
+ public Task> GetAllForRepository(string owner, string repo)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(repo, "repo");
@@ -211,7 +211,7 @@ namespace Octokit
/// The name of the repository
/// The number of the milestone
///
- public Task> GetForMilestone(string owner, string repo, int number)
+ public Task> GetAllForMilestone(string owner, string repo, int number)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(repo, "repo");
diff --git a/Octokit/Clients/MilestonesClient.cs b/Octokit/Clients/MilestonesClient.cs
index c6f1cb58..61b07386 100644
--- a/Octokit/Clients/MilestonesClient.cs
+++ b/Octokit/Clients/MilestonesClient.cs
@@ -43,9 +43,9 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
///
- public Task> GetForRepository(string owner, string name)
+ public Task> GetAllForRepository(string owner, string name)
{
- return GetForRepository(owner, name, new MilestoneRequest());
+ return GetAllForRepository(owner, name, new MilestoneRequest());
}
///
@@ -58,7 +58,7 @@ namespace Octokit
/// The name of the repository
/// Used to filter and sort the list of Milestones returned
///
- public Task> GetForRepository(string owner, string name, MilestoneRequest request)
+ public Task> GetAllForRepository(string owner, string name, MilestoneRequest request)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");
diff --git a/Octokit/Clients/MiscellaneousClient.cs b/Octokit/Clients/MiscellaneousClient.cs
index 76dac9ae..05025a36 100644
--- a/Octokit/Clients/MiscellaneousClient.cs
+++ b/Octokit/Clients/MiscellaneousClient.cs
@@ -34,7 +34,7 @@ namespace Octokit
///
/// Thrown when a general API error occurs.
/// An of emoji and their URI.
- public async Task> GetEmojis()
+ public async Task> GetAllEmojis()
{
var endpoint = new Uri("emojis", UriKind.Relative);
var response = await _connection.Get>(endpoint, null, null)
@@ -61,7 +61,7 @@ namespace Octokit
/// List all templates available to pass as an option when creating a repository.
///
/// A list of template names
- public async Task> GetGitIgnoreTemplates()
+ public async Task> GetAllGitIgnoreTemplates()
{
var endpoint = new Uri("gitignore/templates", UriKind.Relative);
@@ -92,7 +92,7 @@ namespace Octokit
///
/// This is a PREVIEW API! Use it at your own risk.
/// A list of licenses available on the site
- public async Task> GetLicenses()
+ public async Task> GetAllLicenses()
{
const string previewAcceptsHeader = "application/vnd.github.drax-preview+json";
var endpoint = new Uri("licenses", UriKind.Relative);
diff --git a/Octokit/Clients/OrganizationMembersClient.cs b/Octokit/Clients/OrganizationMembersClient.cs
index 76a5e756..d8fe75cf 100644
--- a/Octokit/Clients/OrganizationMembersClient.cs
+++ b/Octokit/Clients/OrganizationMembersClient.cs
@@ -118,7 +118,7 @@ namespace Octokit
/// http://developer.github.com/v3/orgs/members/#public-members-list
/// The login for the organization
///
- public Task> GetPublic(string org)
+ public Task> GetAllPublic(string org)
{
Ensure.ArgumentNotNullOrEmptyString(org, "org");
diff --git a/Octokit/Clients/PullRequestReviewCommentsClient.cs b/Octokit/Clients/PullRequestReviewCommentsClient.cs
index b171a61f..5d8363b2 100644
--- a/Octokit/Clients/PullRequestReviewCommentsClient.cs
+++ b/Octokit/Clients/PullRequestReviewCommentsClient.cs
@@ -40,9 +40,9 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The list of s for the specified repository
- public Task> GetForRepository(string owner, string name)
+ public Task> GetAllForRepository(string owner, string name)
{
- return GetForRepository(owner, name, new PullRequestReviewCommentRequest());
+ return GetAllForRepository(owner, name, new PullRequestReviewCommentRequest());
}
///
@@ -53,7 +53,7 @@ namespace Octokit
/// The name of the repository
/// The sorting parameters
/// The list of s for the specified repository
- public Task> GetForRepository(string owner, string name, PullRequestReviewCommentRequest request)
+ public Task> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");
diff --git a/Octokit/Clients/PullRequestsClient.cs b/Octokit/Clients/PullRequestsClient.cs
index bb449f9d..90c035f1 100644
--- a/Octokit/Clients/PullRequestsClient.cs
+++ b/Octokit/Clients/PullRequestsClient.cs
@@ -40,9 +40,9 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// A of s which are currently open
- public Task> GetForRepository(string owner, string name)
+ public Task> GetAllForRepository(string owner, string name)
{
- return GetForRepository(owner, name, new PullRequestRequest());
+ return GetAllForRepository(owner, name, new PullRequestRequest());
}
///
@@ -55,7 +55,7 @@ namespace Octokit
/// The name of the repository
/// Used to filter and sort the list of pull requests returned
/// A of s which match the criteria
- public Task> GetForRepository(string owner, string name, PullRequestRequest request)
+ public Task> GetAllForRepository(string owner, string name, PullRequestRequest request)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");
diff --git a/Octokit/Clients/ReleasesClient.cs b/Octokit/Clients/ReleasesClient.cs
index 934ba1b6..d832de92 100644
--- a/Octokit/Clients/ReleasesClient.cs
+++ b/Octokit/Clients/ReleasesClient.cs
@@ -134,7 +134,7 @@ namespace Octokit
/// The id of the .
/// Thrown when a general API error occurs.
/// The list of for the specified release of the specified repository.
- public Task> GetAssets(string owner, string name, int id)
+ public Task> GetAllAssets(string owner, string name, int id)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");
diff --git a/Octokit/Clients/RepositoryCommentsClient.cs b/Octokit/Clients/RepositoryCommentsClient.cs
index f4017a2a..a196c287 100644
--- a/Octokit/Clients/RepositoryCommentsClient.cs
+++ b/Octokit/Clients/RepositoryCommentsClient.cs
@@ -44,7 +44,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
///
- public Task> GetForRepository(string owner, string name)
+ public Task> GetAllForRepository(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");
@@ -60,7 +60,7 @@ namespace Octokit
/// The name of the repository
/// The sha of the commit
///
- public Task> GetForCommit(string owner, string name, string sha)
+ public Task> GetAllForCommit(string owner, string name, string sha)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");
diff --git a/Octokit/Clients/RepositoryContentsClient.cs b/Octokit/Clients/RepositoryContentsClient.cs
index 5b08e43c..5cf1caae 100644
--- a/Octokit/Clients/RepositoryContentsClient.cs
+++ b/Octokit/Clients/RepositoryContentsClient.cs
@@ -24,7 +24,7 @@ namespace Octokit
///
/// A collection of representing the content at the specified path
///
- public async Task> GetContents(string owner, string name, string path)
+ public async Task> GetAllContents(string owner, string name, string path)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");
diff --git a/Octokit/Clients/TeamsClient.cs b/Octokit/Clients/TeamsClient.cs
index e3287588..3cacc7dc 100644
--- a/Octokit/Clients/TeamsClient.cs
+++ b/Octokit/Clients/TeamsClient.cs
@@ -60,7 +60,7 @@ namespace Octokit
/// https://developer.github.com/v3/orgs/teams/#list-team-members
///
/// A list of the team's member s.
- public Task> GetMembers(int id)
+ public Task> GetAllMembers(int id)
{
var endpoint = ApiUrls.TeamMembers(id);
@@ -158,7 +158,7 @@ namespace Octokit
///
/// Thrown when a general API error occurs.
/// The team's repositories
- public Task> GetRepositories(int id)
+ public Task> GetAllRepositories(int id)
{
var endpoint = ApiUrls.TeamRepositories(id);