C# Class NGitHub.Services.PullRequestService

Inheritance: IPullRequestService
ファイルを表示 Open project: akilb/NGitHub Class Usage Examples

Public Methods

Method Description
CreateCommentAsync ( string user, string repo, int pullRequestId, int commentIdToReplyTo, string body, Action callback, Action onError ) : GitHubRequestAsyncHandle
CreateCommentAsync ( string user, string repo, int pullRequestId, string commitId, string body, string path, int position, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetCommentAsync ( string user, string repo, int commentId, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetCommentsAsync ( string user, string repo, int pullRequestId, int page, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetCommitsAsync ( string user, string repo, int pullRequestId, int page, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetFilesAsync ( string user, string repo, int pullRequestId, int page, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetPullRequestAsync ( string user, string repo, int pullRequestId, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetPullRequestsAsync ( string user, string repo, State state, int page, Action callback, Action onError ) : GitHubRequestAsyncHandle
IsPullRequestMergedAsync ( string user, string repo, int pullRequestId, Action callback, Action onError ) : GitHubRequestAsyncHandle
PullRequestService ( IGitHubClient client ) : System

Method Details

CreateCommentAsync() public method

public CreateCommentAsync ( string user, string repo, int pullRequestId, int commentIdToReplyTo, string body, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
pullRequestId int
commentIdToReplyTo int
body string
callback Action
onError Action
return GitHubRequestAsyncHandle

CreateCommentAsync() public method

public CreateCommentAsync ( string user, string repo, int pullRequestId, string commitId, string body, string path, int position, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
pullRequestId int
commitId string
body string
path string
position int
callback Action
onError Action
return GitHubRequestAsyncHandle

GetCommentAsync() public method

public GetCommentAsync ( string user, string repo, int commentId, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
commentId int
callback Action
onError Action
return GitHubRequestAsyncHandle

GetCommentsAsync() public method

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

GetCommitsAsync() public method

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

GetFilesAsync() public method

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

GetPullRequestAsync() public method

public GetPullRequestAsync ( string user, string repo, int pullRequestId, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
pullRequestId int
callback Action
onError Action
return GitHubRequestAsyncHandle

GetPullRequestsAsync() public method

public GetPullRequestsAsync ( string user, string repo, State state, int page, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
state State
page int
callback Action
onError Action
return GitHubRequestAsyncHandle

IsPullRequestMergedAsync() public method

public IsPullRequestMergedAsync ( string user, string repo, int pullRequestId, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
pullRequestId int
callback Action
onError Action
return GitHubRequestAsyncHandle

PullRequestService() public method

public PullRequestService ( IGitHubClient client ) : System
client IGitHubClient
return System