C# Class Octokit.Reactive.ObservablePullRequestReviewCommentsClient

A client for GitHub's Pull Request Review Comments API.
See the Review Comments API documentation for more information.
Inheritance: IObservablePullRequestReviewCommentsClient
Show file Open project: octokit/octokit.net Class Usage Examples

Public Methods

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

Method Details

Create() public method

Creates a comment on a pull request review.
http://developer.github.com/v3/pulls/comments/#create-a-comment
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

Create() public method

Creates a comment on a pull request review.
http://developer.github.com/v3/pulls/comments/#create-a-comment
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

CreateReply() public method

Creates a comment on a pull request review as a reply to another comment.
http://developer.github.com/v3/pulls/comments/#create-a-comment
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

CreateReply() public method

Creates a comment on a pull request review as a reply to another comment.
http://developer.github.com/v3/pulls/comments/#create-a-comment
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

Delete() public method

Deletes a comment on a pull request review.
http://developer.github.com/v3/pulls/comments/#delete-a-comment
public Delete ( long repositoryId, int number ) : IObservable
repositoryId long The Id of the repository
number int The pull request review comment number
return IObservable

Delete() public method

Deletes a comment on a pull request review.
http://developer.github.com/v3/pulls/comments/#delete-a-comment
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

Edit() public method

Edits a comment on a pull request review.
http://developer.github.com/v3/pulls/comments/#edit-a-comment
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

Edit() public method

Edits a comment on a pull request review.
http://developer.github.com/v3/pulls/comments/#edit-a-comment
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

GetAll() public method

Gets review comments for a specified pull request.
http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request
public GetAll ( long repositoryId, int number ) : IObservable
repositoryId long The Id of the repository
number int The pull request number
return IObservable

GetAll() public method

Gets review comments for a specified pull request.
http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request
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

GetAll() public method

Gets review comments for a specified pull request.
http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request
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

GetAll() public method

Gets review comments for a specified pull request.
http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request
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

GetAllForRepository() public method

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
public GetAllForRepository ( long repositoryId ) : IObservable
repositoryId long The Id of the repository
return IObservable

GetAllForRepository() public method

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
public GetAllForRepository ( long repositoryId, ApiOptions options ) : IObservable
repositoryId long The Id of the repository
options ApiOptions Options for changing the API response
return IObservable

GetAllForRepository() public method

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
public GetAllForRepository ( long repositoryId, PullRequestReviewCommentRequest request ) : IObservable
repositoryId long The Id of the repository
request PullRequestReviewCommentRequest The sorting parameters
return IObservable

GetAllForRepository() public method

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
public GetAllForRepository ( long repositoryId, PullRequestReviewCommentRequest request, ApiOptions options ) : IObservable
repositoryId long The Id of the repository
request PullRequestReviewCommentRequest The sorting parameters
options ApiOptions Options for changing the API response
return IObservable

GetAllForRepository() public method

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
public GetAllForRepository ( string owner, string name ) : IObservable
owner string The owner of the repository
name string The name of the repository
return IObservable

GetAllForRepository() public method

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
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

GetAllForRepository() public method

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
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 parameters
return IObservable

GetAllForRepository() public method

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
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 parameters
options ApiOptions Options for changing the API response
return IObservable

GetComment() public method

Gets a single pull request review comment by number.
http://developer.github.com/v3/pulls/comments/#get-a-single-comment
public GetComment ( long repositoryId, int number ) : IObservable
repositoryId long The Id of the repository
number int The pull request review comment number
return IObservable

GetComment() public method

Gets a single pull request review comment by number.
http://developer.github.com/v3/pulls/comments/#get-a-single-comment
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

ObservablePullRequestReviewCommentsClient() public method

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