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
Afficher le fichier Open project: octokit/octokit.net Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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
Résultat IObservable

Create() public méthode

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
Résultat IObservable

CreateReply() public méthode

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
Résultat IObservable

CreateReply() public méthode

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
Résultat IObservable

Delete() public méthode

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
Résultat IObservable

Delete() public méthode

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
Résultat IObservable

Edit() public méthode

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
Résultat IObservable

Edit() public méthode

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
Résultat IObservable

GetAll() public méthode

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
Résultat IObservable

GetAll() public méthode

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
Résultat IObservable

GetAll() public méthode

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
Résultat IObservable

GetAll() public méthode

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
Résultat IObservable

GetAllForRepository() public méthode

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
Résultat IObservable

GetAllForRepository() public méthode

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
Résultat IObservable

GetAllForRepository() public méthode

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
Résultat IObservable

GetAllForRepository() public méthode

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
Résultat IObservable

GetAllForRepository() public méthode

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
Résultat IObservable

GetAllForRepository() public méthode

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
Résultat IObservable

GetAllForRepository() public méthode

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
Résultat IObservable

GetAllForRepository() public méthode

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
Résultat IObservable

GetComment() public méthode

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
Résultat IObservable

GetComment() public méthode

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
Résultat IObservable

ObservablePullRequestReviewCommentsClient() public méthode

public ObservablePullRequestReviewCommentsClient ( IGitHubClient client ) : System
client IGitHubClient
Résultat System