C# Class Octokit.Reactive.ObservablePullRequestsClient

A client for GitHub's Pull Requests API.
See the Pull Requests API documentation for more information.
Inheritance: IObservablePullRequestsClient
Afficher le fichier Open project: octokit/octokit.net Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
Commits ( long repositoryId, int number ) : IObservable

Gets the list of commits on a pull request.

http://developer.github.com/v3/pulls/#list-commits-on-a-pull-request

Commits ( string owner, string name, int number ) : IObservable

Gets the list of commits on a pull request.

http://developer.github.com/v3/pulls/#list-commits-on-a-pull-request

Create ( long repositoryId, NewPullRequest newPullRequest ) : IObservable

Creates a pull request for the specified repository.

http://developer.github.com/v3/pulls/#create-a-pull-request

Create ( string owner, string name, NewPullRequest newPullRequest ) : IObservable

Creates a pull request for the specified repository.

http://developer.github.com/v3/pulls/#create-a-pull-request

Files ( long repositoryId, int number ) : IObservable

Get the list of files on a pull request.

https://developer.github.com/v3/pulls/#list-pull-requests-files

Files ( string owner, string name, int number ) : IObservable

Get the list of files on a pull request.

https://developer.github.com/v3/pulls/#list-pull-requests-files

Get ( long repositoryId, int number ) : IObservable

Gets a single Pull Request by number.

http://developer.github.com/v3/pulls/#get-a-single-pull-request

Get ( string owner, string name, int number ) : IObservable

Gets a single Pull Request by number.

http://developer.github.com/v3/pulls/#get-a-single-pull-request

GetAllForRepository ( long repositoryId ) : IObservable

Gets all open pull requests for the repository.

http://developer.github.com/v3/pulls/#list-pull-requests

GetAllForRepository ( long repositoryId, ApiOptions options ) : IObservable

Gets all open pull requests for the repository.

http://developer.github.com/v3/pulls/#list-pull-requests

GetAllForRepository ( long repositoryId, PullRequestRequest request ) : IObservable

Query pull requests for the repository based on criteria

http://developer.github.com/v3/pulls/#list-pull-requests

GetAllForRepository ( long repositoryId, PullRequestRequest request, ApiOptions options ) : IObservable

Query pull requests for the repository based on criteria

http://developer.github.com/v3/pulls/#list-pull-requests

GetAllForRepository ( string owner, string name ) : IObservable

Gets all open pull requests for the repository.

http://developer.github.com/v3/pulls/#list-pull-requests

GetAllForRepository ( string owner, string name, ApiOptions options ) : IObservable

Gets all open pull requests for the repository.

http://developer.github.com/v3/pulls/#list-pull-requests

GetAllForRepository ( string owner, string name, PullRequestRequest request ) : IObservable

Query pull requests for the repository based on criteria

http://developer.github.com/v3/pulls/#list-pull-requests

GetAllForRepository ( string owner, string name, PullRequestRequest request, ApiOptions options ) : IObservable

Query pull requests for the repository based on criteria

http://developer.github.com/v3/pulls/#list-pull-requests

Merge ( long repositoryId, int number, MergePullRequest mergePullRequest ) : IObservable

Merge a pull request.

http://developer.github.com/v3/pulls/#merge-a-pull-request-merge-buttontrade

Merge ( string owner, string name, int number, MergePullRequest mergePullRequest ) : IObservable

Merge a pull request.

http://developer.github.com/v3/pulls/#merge-a-pull-request-merge-buttontrade

Merged ( long repositoryId, int number ) : IObservable

Gets the pull request merge status.

http://developer.github.com/v3/pulls/#get-if-a-pull-request-has-been-merged

Merged ( string owner, string name, int number ) : IObservable

Gets the pull request merge status.

http://developer.github.com/v3/pulls/#get-if-a-pull-request-has-been-merged

ObservablePullRequestsClient ( IGitHubClient client ) : System
Update ( long repositoryId, int number, PullRequestUpdate pullRequestUpdate ) : IObservable

Update a pull request for the specified repository.

http://developer.github.com/v3/pulls/#update-a-pull-request

Update ( string owner, string name, int number, PullRequestUpdate pullRequestUpdate ) : IObservable

Update a pull request for the specified repository.

http://developer.github.com/v3/pulls/#update-a-pull-request

Method Details

Commits() public méthode

Gets the list of commits on a pull request.
http://developer.github.com/v3/pulls/#list-commits-on-a-pull-request
public Commits ( long repositoryId, int number ) : IObservable
repositoryId long The Id of the repository
number int The pull request number
Résultat IObservable

Commits() public méthode

Gets the list of commits on a pull request.
http://developer.github.com/v3/pulls/#list-commits-on-a-pull-request
public Commits ( 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

Create() public méthode

Creates a pull request for the specified repository.
http://developer.github.com/v3/pulls/#create-a-pull-request
public Create ( long repositoryId, NewPullRequest newPullRequest ) : IObservable
repositoryId long The Id of the repository
newPullRequest NewPullRequest A instance describing the new PullRequest to create
Résultat IObservable

Create() public méthode

Creates a pull request for the specified repository.
http://developer.github.com/v3/pulls/#create-a-pull-request
public Create ( string owner, string name, NewPullRequest newPullRequest ) : IObservable
owner string The owner of the repository
name string The name of the repository
newPullRequest NewPullRequest A instance describing the new PullRequest to create
Résultat IObservable

Files() public méthode

Get the list of files on a pull request.
https://developer.github.com/v3/pulls/#list-pull-requests-files
public Files ( long repositoryId, int number ) : IObservable
repositoryId long The Id of the repository
number int The pull request number
Résultat IObservable

Files() public méthode

Get the list of files on a pull request.
https://developer.github.com/v3/pulls/#list-pull-requests-files
public Files ( 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

Get() public méthode

Gets a single Pull Request by number.
http://developer.github.com/v3/pulls/#get-a-single-pull-request
public Get ( long repositoryId, int number ) : IObservable
repositoryId long The Id of the repository
number int The number of the pull request
Résultat IObservable

Get() public méthode

Gets a single Pull Request by number.
http://developer.github.com/v3/pulls/#get-a-single-pull-request
public Get ( string owner, string name, int number ) : IObservable
owner string
name string
number int
Résultat IObservable

GetAllForRepository() public méthode

Gets all open pull requests for the repository.
http://developer.github.com/v3/pulls/#list-pull-requests
public GetAllForRepository ( long repositoryId ) : IObservable
repositoryId long The Id of the repository
Résultat IObservable

GetAllForRepository() public méthode

Gets all open pull requests for the repository.
http://developer.github.com/v3/pulls/#list-pull-requests
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

Query pull requests for the repository based on criteria
http://developer.github.com/v3/pulls/#list-pull-requests
public GetAllForRepository ( long repositoryId, PullRequestRequest request ) : IObservable
repositoryId long The Id of the repository
request PullRequestRequest Used to filter and sort the list of pull requests returned
Résultat IObservable

GetAllForRepository() public méthode

Query pull requests for the repository based on criteria
http://developer.github.com/v3/pulls/#list-pull-requests
public GetAllForRepository ( long repositoryId, PullRequestRequest request, ApiOptions options ) : IObservable
repositoryId long The Id of the repository
request PullRequestRequest Used to filter and sort the list of pull requests returned
options ApiOptions Options for changing the API response
Résultat IObservable

GetAllForRepository() public méthode

Gets all open pull requests for the repository.
http://developer.github.com/v3/pulls/#list-pull-requests
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 all open pull requests for the repository.
http://developer.github.com/v3/pulls/#list-pull-requests
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

Query pull requests for the repository based on criteria
http://developer.github.com/v3/pulls/#list-pull-requests
public GetAllForRepository ( string owner, string name, PullRequestRequest request ) : IObservable
owner string The owner of the repository
name string The name of the repository
request PullRequestRequest Used to filter and sort the list of pull requests returned
Résultat IObservable

GetAllForRepository() public méthode

Query pull requests for the repository based on criteria
http://developer.github.com/v3/pulls/#list-pull-requests
public GetAllForRepository ( string owner, string name, PullRequestRequest request, ApiOptions options ) : IObservable
owner string The owner of the repository
name string The name of the repository
request PullRequestRequest Used to filter and sort the list of pull requests returned
options ApiOptions Options for changing the API response
Résultat IObservable

Merge() public méthode

Merge a pull request.
http://developer.github.com/v3/pulls/#merge-a-pull-request-merge-buttontrade
public Merge ( long repositoryId, int number, MergePullRequest mergePullRequest ) : IObservable
repositoryId long The Id of the repository
number int The pull request number
mergePullRequest MergePullRequest A instance describing a pull request merge
Résultat IObservable

Merge() public méthode

Merge a pull request.
http://developer.github.com/v3/pulls/#merge-a-pull-request-merge-buttontrade
public Merge ( string owner, string name, int number, MergePullRequest mergePullRequest ) : IObservable
owner string The owner of the repository
name string The name of the repository
number int The pull request number
mergePullRequest MergePullRequest A instance describing a pull request merge
Résultat IObservable

Merged() public méthode

Gets the pull request merge status.
http://developer.github.com/v3/pulls/#get-if-a-pull-request-has-been-merged
public Merged ( long repositoryId, int number ) : IObservable
repositoryId long The Id of the repository
number int The pull request number
Résultat IObservable

Merged() public méthode

Gets the pull request merge status.
http://developer.github.com/v3/pulls/#get-if-a-pull-request-has-been-merged
public Merged ( 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

ObservablePullRequestsClient() public méthode

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

Update() public méthode

Update a pull request for the specified repository.
http://developer.github.com/v3/pulls/#update-a-pull-request
public Update ( long repositoryId, int number, PullRequestUpdate pullRequestUpdate ) : IObservable
repositoryId long The Id of the repository
number int The PullRequest number
pullRequestUpdate PullRequestUpdate An instance describing the changes to make to the PullRequest ///
Résultat IObservable

Update() public méthode

Update a pull request for the specified repository.
http://developer.github.com/v3/pulls/#update-a-pull-request
public Update ( string owner, string name, int number, PullRequestUpdate pullRequestUpdate ) : IObservable
owner string The owner of the repository
name string The name of the repository
number int The PullRequest number
pullRequestUpdate PullRequestUpdate An instance describing the changes to make to the PullRequest ///
Résultat IObservable