C# 클래스 Octokit.Reactive.ObservablePullRequestsClient

A client for GitHub's Pull Requests API.
See the Pull Requests API documentation for more information.
상속: IObservablePullRequestsClient
파일 보기 프로젝트 열기: octokit/octokit.net 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
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

메소드 상세

Commits() 공개 메소드

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
리턴 IObservable

Commits() 공개 메소드

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
리턴 IObservable

Create() 공개 메소드

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
리턴 IObservable

Create() 공개 메소드

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
리턴 IObservable

Files() 공개 메소드

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
리턴 IObservable

Files() 공개 메소드

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
리턴 IObservable

Get() 공개 메소드

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
리턴 IObservable

Get() 공개 메소드

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
리턴 IObservable

GetAllForRepository() 공개 메소드

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
리턴 IObservable

GetAllForRepository() 공개 메소드

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
리턴 IObservable

GetAllForRepository() 공개 메소드

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
리턴 IObservable

GetAllForRepository() 공개 메소드

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
리턴 IObservable

GetAllForRepository() 공개 메소드

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
리턴 IObservable

GetAllForRepository() 공개 메소드

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
리턴 IObservable

GetAllForRepository() 공개 메소드

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
리턴 IObservable

GetAllForRepository() 공개 메소드

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
리턴 IObservable

Merge() 공개 메소드

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
리턴 IObservable

Merge() 공개 메소드

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
리턴 IObservable

Merged() 공개 메소드

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
리턴 IObservable

Merged() 공개 메소드

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
리턴 IObservable

ObservablePullRequestsClient() 공개 메소드

public ObservablePullRequestsClient ( IGitHubClient client ) : System
client IGitHubClient
리턴 System

Update() 공개 메소드

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 ///
리턴 IObservable

Update() 공개 메소드

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 ///
리턴 IObservable