C# Class NGitHub.Services.RepositoryService

Inheritance: IRepositoryService
Mostrar archivo Open project: akilb/NGitHub Class Usage Examples

Public Methods

Method Description
ForkAsync ( string user, string repo, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetBranchesAsync ( string user, string repo, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetCommitAsync ( string user, string repo, string sha, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetCommitsAsync ( string user, string repo, string branch, string lastSha, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetForksAsync ( string user, string repo, int page, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetForksAsync ( string user, string repo, int page, int perPage, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetRepositoriesAsync ( string user, int page, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetRepositoriesAsync ( string user, int page, int perPage, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetRepositoryAsync ( string user, string repo, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetWatchedRepositoriesAsync ( string user, int page, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetWatchedRepositoriesAsync ( string user, int page, int perPage, Action callback, Action onError ) : GitHubRequestAsyncHandle
IsWatchingAsync ( string user, string repo, Action callback, Action onError ) : GitHubRequestAsyncHandle
RepositoryService ( IGitHubClient gitHubClient ) : System
UnwatchAsync ( string user, string repo, System.Action callback, Action onError ) : GitHubRequestAsyncHandle
WatchAsync ( string user, string repo, System.Action callback, Action onError ) : GitHubRequestAsyncHandle

Private Methods

Method Description
GetRepositoriesAsyncInternal ( string resource, int page, int perPage, Action callback, Action onError ) : GitHubRequestAsyncHandle

Method Details

ForkAsync() public method

public ForkAsync ( string user, string repo, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
callback Action
onError Action
return GitHubRequestAsyncHandle

GetBranchesAsync() public method

public GetBranchesAsync ( string user, string repo, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
callback Action
onError Action
return GitHubRequestAsyncHandle

GetCommitAsync() public method

public GetCommitAsync ( string user, string repo, string sha, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
sha string
callback Action
onError Action
return GitHubRequestAsyncHandle

GetCommitsAsync() public method

public GetCommitsAsync ( string user, string repo, string branch, string lastSha, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
branch string
lastSha string
callback Action
onError Action
return GitHubRequestAsyncHandle

GetForksAsync() public method

public GetForksAsync ( string user, string repo, int page, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
page int
callback Action
onError Action
return GitHubRequestAsyncHandle

GetForksAsync() public method

public GetForksAsync ( string user, string repo, int page, int perPage, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
page int
perPage int
callback Action
onError Action
return GitHubRequestAsyncHandle

GetRepositoriesAsync() public method

public GetRepositoriesAsync ( string user, int page, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
page int
callback Action
onError Action
return GitHubRequestAsyncHandle

GetRepositoriesAsync() public method

public GetRepositoriesAsync ( string user, int page, int perPage, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
page int
perPage int
callback Action
onError Action
return GitHubRequestAsyncHandle

GetRepositoryAsync() public method

public GetRepositoryAsync ( string user, string repo, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
callback Action
onError Action
return GitHubRequestAsyncHandle

GetWatchedRepositoriesAsync() public method

public GetWatchedRepositoriesAsync ( string user, int page, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
page int
callback Action
onError Action
return GitHubRequestAsyncHandle

GetWatchedRepositoriesAsync() public method

public GetWatchedRepositoriesAsync ( string user, int page, int perPage, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
page int
perPage int
callback Action
onError Action
return GitHubRequestAsyncHandle

IsWatchingAsync() public method

public IsWatchingAsync ( string user, string repo, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
callback Action
onError Action
return GitHubRequestAsyncHandle

RepositoryService() public method

public RepositoryService ( IGitHubClient gitHubClient ) : System
gitHubClient IGitHubClient
return System

UnwatchAsync() public method

public UnwatchAsync ( string user, string repo, System.Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
callback System.Action
onError Action
return GitHubRequestAsyncHandle

WatchAsync() public method

public WatchAsync ( string user, string repo, System.Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
callback System.Action
onError Action
return GitHubRequestAsyncHandle