C# Class NGitHub.Services.IssueService

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

Public Methods

Method Description
CreateCommentAsync ( string user, string repo, int issueNumber, string comment, Action callback, Action onError ) : GitHubRequestAsyncHandle
CreateIssueAsync ( string user, string repo, string title, string body, string assignee, string mileStone, string labels, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetCommentsAsync ( string user, string repo, int issueNumber, int page, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetIssueAsync ( string user, string repo, int issueNumber, Action callback, Action onError ) : GitHubRequestAsyncHandle
GetIssuesAsync ( string user, string repo, State state, int page, Action callback, Action onError ) : GitHubRequestAsyncHandle
IssueService ( IGitHubClient gitHubClient ) : System

Method Details

CreateCommentAsync() public method

public CreateCommentAsync ( string user, string repo, int issueNumber, string comment, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
issueNumber int
comment string
callback Action
onError Action
return GitHubRequestAsyncHandle

CreateIssueAsync() public method

public CreateIssueAsync ( string user, string repo, string title, string body, string assignee, string mileStone, string labels, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
title string
body string
assignee string
mileStone string
labels string
callback Action
onError Action
return GitHubRequestAsyncHandle

GetCommentsAsync() public method

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

GetIssueAsync() public method

public GetIssueAsync ( string user, string repo, int issueNumber, Action callback, Action onError ) : GitHubRequestAsyncHandle
user string
repo string
issueNumber int
callback Action
onError Action
return GitHubRequestAsyncHandle

GetIssuesAsync() public method

public GetIssuesAsync ( 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

IssueService() public method

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