Method | Description | |
---|---|---|
Create ( long repositoryId, int number, PullRequestReviewCommentCreate comment ) : IObservable |
Creates a comment on a pull request review. http://developer.github.com/v3/pulls/comments/#create-a-comment |
|
Create ( string owner, string name, int number, PullRequestReviewCommentCreate comment ) : IObservable |
Creates a comment on a pull request review. http://developer.github.com/v3/pulls/comments/#create-a-comment |
|
CreateReply ( long repositoryId, int number, PullRequestReviewCommentReplyCreate comment ) : IObservable |
Creates a comment on a pull request review as a reply to another comment. http://developer.github.com/v3/pulls/comments/#create-a-comment |
|
CreateReply ( string owner, string name, int number, PullRequestReviewCommentReplyCreate comment ) : IObservable |
Creates a comment on a pull request review as a reply to another comment. http://developer.github.com/v3/pulls/comments/#create-a-comment |
|
Delete ( long repositoryId, int number ) : IObservable |
Deletes a comment on a pull request review. http://developer.github.com/v3/pulls/comments/#delete-a-comment |
|
Delete ( string owner, string name, int number ) : IObservable |
Deletes a comment on a pull request review. http://developer.github.com/v3/pulls/comments/#delete-a-comment |
|
Edit ( long repositoryId, int number, PullRequestReviewCommentEdit comment ) : IObservable |
Edits a comment on a pull request review. http://developer.github.com/v3/pulls/comments/#edit-a-comment |
|
Edit ( string owner, string name, int number, PullRequestReviewCommentEdit comment ) : IObservable |
Edits a comment on a pull request review. http://developer.github.com/v3/pulls/comments/#edit-a-comment |
|
GetAll ( long repositoryId, int number ) : IObservable |
Gets review comments for a specified pull request. http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request |
|
GetAll ( long repositoryId, int number, ApiOptions options ) : IObservable |
Gets review comments for a specified pull request. http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request |
|
GetAll ( string owner, string name, int number ) : IObservable |
Gets review comments for a specified pull request. http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request |
|
GetAll ( string owner, string name, int number, ApiOptions options ) : IObservable |
Gets review comments for a specified pull request. http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request |
|
GetAllForRepository ( long repositoryId ) : IObservable |
Gets a list of the pull request review comments in a specified repository. http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository |
|
GetAllForRepository ( long repositoryId, ApiOptions options ) : IObservable |
Gets a list of the pull request review comments in a specified repository. http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository |
|
GetAllForRepository ( long repositoryId, PullRequestReviewCommentRequest request ) : IObservable |
Gets a list of the pull request review comments in a specified repository. http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository |
|
GetAllForRepository ( long repositoryId, PullRequestReviewCommentRequest request, ApiOptions options ) : IObservable |
Gets a list of the pull request review comments in a specified repository. http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository |
|
GetAllForRepository ( string owner, string name ) : IObservable |
Gets a list of the pull request review comments in a specified repository. http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository |
|
GetAllForRepository ( string owner, string name, ApiOptions options ) : IObservable |
Gets a list of the pull request review comments in a specified repository. http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository |
|
GetAllForRepository ( string owner, string name, PullRequestReviewCommentRequest request ) : IObservable |
Gets a list of the pull request review comments in a specified repository. http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository |
|
GetAllForRepository ( string owner, string name, PullRequestReviewCommentRequest request, ApiOptions options ) : IObservable |
Gets a list of the pull request review comments in a specified repository. http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository |
|
GetComment ( long repositoryId, int number ) : IObservable |
Gets a single pull request review comment by number. http://developer.github.com/v3/pulls/comments/#get-a-single-comment |
|
GetComment ( string owner, string name, int number ) : IObservable |
Gets a single pull request review comment by number. http://developer.github.com/v3/pulls/comments/#get-a-single-comment |
|
ObservablePullRequestReviewCommentsClient ( IGitHubClient client ) : System |
public Create ( long repositoryId, int number, PullRequestReviewCommentCreate comment ) : IObservable |
||
repositoryId | long | The Id of the repository |
number | int | The Pull Request number |
comment | PullRequestReviewCommentCreate | The comment |
return | IObservable |
public Create ( string owner, string name, int number, PullRequestReviewCommentCreate comment ) : IObservable |
||
owner | string | The owner of the repository |
name | string | The name of the repository |
number | int | The Pull Request number |
comment | PullRequestReviewCommentCreate | The comment |
return | IObservable |
public CreateReply ( long repositoryId, int number, PullRequestReviewCommentReplyCreate comment ) : IObservable |
||
repositoryId | long | The Id of the repository |
number | int | The pull request number |
comment | PullRequestReviewCommentReplyCreate | The comment |
return | IObservable |
public CreateReply ( string owner, string name, int number, PullRequestReviewCommentReplyCreate comment ) : IObservable |
||
owner | string | The owner of the repository |
name | string | The name of the repository |
number | int | The pull request number |
comment | PullRequestReviewCommentReplyCreate | The comment |
return | IObservable |
public Delete ( long repositoryId, int number ) : IObservable |
||
repositoryId | long | The Id of the repository |
number | int | The pull request review comment number |
return | IObservable |
public Delete ( string owner, string name, int number ) : IObservable |
||
owner | string | The owner of the repository |
name | string | The name of the repository |
number | int | The pull request review comment number |
return | IObservable |
public Edit ( long repositoryId, int number, PullRequestReviewCommentEdit comment ) : IObservable |
||
repositoryId | long | The Id of the repository |
number | int | The pull request review comment number |
comment | PullRequestReviewCommentEdit | The edited comment |
return | IObservable |
public Edit ( string owner, string name, int number, PullRequestReviewCommentEdit comment ) : IObservable |
||
owner | string | The owner of the repository |
name | string | The name of the repository |
number | int | The pull request review comment number |
comment | PullRequestReviewCommentEdit | The edited comment |
return | IObservable |
public GetAll ( long repositoryId, int number ) : IObservable |
||
repositoryId | long | The Id of the repository |
number | int | The pull request number |
return | IObservable |
public GetAll ( long repositoryId, int number, ApiOptions options ) : IObservable |
||
repositoryId | long | The Id of the repository |
number | int | The pull request number |
options | ApiOptions | Options for changing the API response |
return | IObservable |
public GetAll ( string owner, string name, int number ) : IObservable |
||
owner | string | The owner of the repository |
name | string | The name of the repository |
number | int | The pull request number |
return | IObservable |
public GetAll ( string owner, string name, int number, ApiOptions options ) : IObservable |
||
owner | string | The owner of the repository |
name | string | The name of the repository |
number | int | The pull request number |
options | ApiOptions | Options for changing the API response |
return | IObservable |
public GetAllForRepository ( long repositoryId ) : IObservable |
||
repositoryId | long | The Id of the repository |
return | IObservable |
public GetAllForRepository ( long repositoryId, ApiOptions options ) : IObservable |
||
repositoryId | long | The Id of the repository |
options | ApiOptions | Options for changing the API response |
return | IObservable |
public GetAllForRepository ( long repositoryId, PullRequestReviewCommentRequest request ) : IObservable |
||
repositoryId | long | The Id of the repository |
request | PullRequestReviewCommentRequest | The sorting |
return | IObservable |
public GetAllForRepository ( long repositoryId, PullRequestReviewCommentRequest request, ApiOptions options ) : IObservable |
||
repositoryId | long | The Id of the repository |
request | PullRequestReviewCommentRequest | The sorting |
options | ApiOptions | Options for changing the API response |
return | IObservable |
public GetAllForRepository ( string owner, string name ) : IObservable |
||
owner | string | The owner of the repository |
name | string | The name of the repository |
return | IObservable |
public GetAllForRepository ( string owner, string name, ApiOptions options ) : IObservable |
||
owner | string | The owner of the repository |
name | string | The name of the repository |
options | ApiOptions | Options for changing the API response |
return | IObservable |
public GetAllForRepository ( string owner, string name, PullRequestReviewCommentRequest request ) : IObservable |
||
owner | string | The owner of the repository |
name | string | The name of the repository |
request | PullRequestReviewCommentRequest | The sorting |
return | IObservable |
public GetAllForRepository ( string owner, string name, PullRequestReviewCommentRequest request, ApiOptions options ) : IObservable |
||
owner | string | The owner of the repository |
name | string | The name of the repository |
request | PullRequestReviewCommentRequest | The sorting |
options | ApiOptions | Options for changing the API response |
return | IObservable |
public GetComment ( long repositoryId, int number ) : IObservable |
||
repositoryId | long | The Id of the repository |
number | int | The pull request review comment number |
return | IObservable |
public GetComment ( string owner, string name, int number ) : IObservable |
||
owner | string | The owner of the repository |
name | string | The name of the repository |
number | int | The pull request review comment number |
return | IObservable |
public ObservablePullRequestReviewCommentsClient ( IGitHubClient client ) : System | ||
client | IGitHubClient | |
return | System |