C# 클래스 Octokit.Reactive.ObservableEventsClient

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

공개 메소드들

메소드 설명
GetAll ( ) : IObservable

Gets all the public events

http://developer.github.com/v3/activity/events/#list-public-events

GetAll ( ApiOptions options ) : IObservable

Gets all the public events

http://developer.github.com/v3/activity/events/#list-public-events

GetAllForAnOrganization ( string user, string organization ) : IObservable

Gets all the events that are associated with an organization.

http://developer.github.com/v3/activity/events/#list-events-for-an-organization

GetAllForAnOrganization ( string user, string organization, ApiOptions options ) : IObservable

Gets all the events that are associated with an organization.

http://developer.github.com/v3/activity/events/#list-events-for-an-organization

GetAllForOrganization ( string organization ) : IObservable

Gets all the events for a given organization

http://developer.github.com/v3/activity/events/#list-public-events-for-an-organization

GetAllForOrganization ( string organization, ApiOptions options ) : IObservable

Gets all the events for a given organization

http://developer.github.com/v3/activity/events/#list-public-events-for-an-organization

GetAllForRepository ( long repositoryId ) : IObservable

Gets all the events for a given repository

http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository

GetAllForRepository ( long repositoryId, ApiOptions options ) : IObservable

Gets all the events for a given repository

http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository

GetAllForRepository ( string owner, string name ) : IObservable

Gets all the events for a given repository

http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository

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

Gets all the events for a given repository

http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository

GetAllForRepositoryNetwork ( string owner, string name ) : IObservable

Gets all the events for a given repository network

http://developer.github.com/v3/activity/events/#list-public-events-for-a-network-of-repositories

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

Gets all the events for a given repository network

http://developer.github.com/v3/activity/events/#list-public-events-for-a-network-of-repositories

GetAllIssuesForRepository ( long repositoryId ) : IObservable

Gets all the issue events for a given repository

http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository

GetAllIssuesForRepository ( long repositoryId, ApiOptions options ) : IObservable

Gets all the issue events for a given repository

http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository

GetAllIssuesForRepository ( string owner, string name ) : IObservable

Gets all the issue events for a given repository

http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository

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

Gets all the issue events for a given repository

http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository

GetAllUserPerformed ( string user ) : IObservable

Gets all the events that have been performed by a given user.

http://developer.github.com/v3/activity/events/#list-events-performed-by-a-user

GetAllUserPerformed ( string user, ApiOptions options ) : IObservable

Gets all the events that have been performed by a given user.

http://developer.github.com/v3/activity/events/#list-events-performed-by-a-user

GetAllUserPerformedPublic ( string user ) : IObservable

Gets all the public events that have been performed by a given user.

http://developer.github.com/v3/activity/events/#list-public-events-performed-by-a-user

GetAllUserPerformedPublic ( string user, ApiOptions options ) : IObservable

Gets all the public events that have been performed by a given user.

http://developer.github.com/v3/activity/events/#list-public-events-performed-by-a-user

GetAllUserReceived ( string user ) : IObservable

Gets all the events that have been received by a given user.

http://developer.github.com/v3/activity/events/#list-events-that-a-user-has-received

GetAllUserReceived ( string user, ApiOptions options ) : IObservable

Gets all the events that have been received by a given user.

http://developer.github.com/v3/activity/events/#list-events-that-a-user-has-received

GetAllUserReceivedPublic ( string user ) : IObservable

Gets all the events that have been received by a given user.

http://developer.github.com/v3/activity/events/#list-public-events-that-a-user-has-received

GetAllUserReceivedPublic ( string user, ApiOptions options ) : IObservable

Gets all the events that have been received by a given user.

http://developer.github.com/v3/activity/events/#list-public-events-that-a-user-has-received

ObservableEventsClient ( IGitHubClient client ) : System

메소드 상세

GetAll() 공개 메소드

Gets all the public events
http://developer.github.com/v3/activity/events/#list-public-events
public GetAll ( ) : IObservable
리턴 IObservable

GetAll() 공개 메소드

Gets all the public events
http://developer.github.com/v3/activity/events/#list-public-events
public GetAll ( ApiOptions options ) : IObservable
options ApiOptions Options for changing the API response
리턴 IObservable

GetAllForAnOrganization() 공개 메소드

Gets all the events that are associated with an organization.
http://developer.github.com/v3/activity/events/#list-events-for-an-organization
public GetAllForAnOrganization ( string user, string organization ) : IObservable
user string The login of the user
organization string The name of the organization
리턴 IObservable

GetAllForAnOrganization() 공개 메소드

Gets all the events that are associated with an organization.
http://developer.github.com/v3/activity/events/#list-events-for-an-organization
public GetAllForAnOrganization ( string user, string organization, ApiOptions options ) : IObservable
user string The login of the user
organization string The name of the organization
options ApiOptions Options for changing the API response
리턴 IObservable

GetAllForOrganization() 공개 메소드

Gets all the events for a given organization
http://developer.github.com/v3/activity/events/#list-public-events-for-an-organization
public GetAllForOrganization ( string organization ) : IObservable
organization string The name of the organization
리턴 IObservable

GetAllForOrganization() 공개 메소드

Gets all the events for a given organization
http://developer.github.com/v3/activity/events/#list-public-events-for-an-organization
public GetAllForOrganization ( string organization, ApiOptions options ) : IObservable
organization string The name of the organization
options ApiOptions Options for changing the API response
리턴 IObservable

GetAllForRepository() 공개 메소드

Gets all the events for a given repository
http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
public GetAllForRepository ( long repositoryId ) : IObservable
repositoryId long The Id of the repository
리턴 IObservable

GetAllForRepository() 공개 메소드

Gets all the events for a given repository
http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
public GetAllForRepository ( long repositoryId, ApiOptions options ) : IObservable
repositoryId long The Id of the repository
options ApiOptions Options for changing the API response
리턴 IObservable

GetAllForRepository() 공개 메소드

Gets all the events for a given repository
http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
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 the events for a given repository
http://developer.github.com/v3/activity/events/#list-issue-events-for-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
리턴 IObservable

GetAllForRepositoryNetwork() 공개 메소드

Gets all the events for a given repository network
http://developer.github.com/v3/activity/events/#list-public-events-for-a-network-of-repositories
public GetAllForRepositoryNetwork ( string owner, string name ) : IObservable
owner string The owner of the repository
name string The name of the repository
리턴 IObservable

GetAllForRepositoryNetwork() 공개 메소드

Gets all the events for a given repository network
http://developer.github.com/v3/activity/events/#list-public-events-for-a-network-of-repositories
public GetAllForRepositoryNetwork ( 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

GetAllIssuesForRepository() 공개 메소드

Gets all the issue events for a given repository
http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
public GetAllIssuesForRepository ( long repositoryId ) : IObservable
repositoryId long The Id of the repository
리턴 IObservable

GetAllIssuesForRepository() 공개 메소드

Gets all the issue events for a given repository
http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
public GetAllIssuesForRepository ( long repositoryId, ApiOptions options ) : IObservable
repositoryId long The Id of the repository
options ApiOptions Options for changing the API response
리턴 IObservable

GetAllIssuesForRepository() 공개 메소드

Gets all the issue events for a given repository
http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
public GetAllIssuesForRepository ( string owner, string name ) : IObservable
owner string The owner of the repository
name string The name of the repository
리턴 IObservable

GetAllIssuesForRepository() 공개 메소드

Gets all the issue events for a given repository
http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
public GetAllIssuesForRepository ( 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

GetAllUserPerformed() 공개 메소드

Gets all the events that have been performed by a given user.
http://developer.github.com/v3/activity/events/#list-events-performed-by-a-user
public GetAllUserPerformed ( string user ) : IObservable
user string The login of the user
리턴 IObservable

GetAllUserPerformed() 공개 메소드

Gets all the events that have been performed by a given user.
http://developer.github.com/v3/activity/events/#list-events-performed-by-a-user
public GetAllUserPerformed ( string user, ApiOptions options ) : IObservable
user string The login of the user
options ApiOptions Options for changing the API response
리턴 IObservable

GetAllUserPerformedPublic() 공개 메소드

Gets all the public events that have been performed by a given user.
http://developer.github.com/v3/activity/events/#list-public-events-performed-by-a-user
public GetAllUserPerformedPublic ( string user ) : IObservable
user string The login of the user
리턴 IObservable

GetAllUserPerformedPublic() 공개 메소드

Gets all the public events that have been performed by a given user.
http://developer.github.com/v3/activity/events/#list-public-events-performed-by-a-user
public GetAllUserPerformedPublic ( string user, ApiOptions options ) : IObservable
user string The login of the user
options ApiOptions Options for changing the API response
리턴 IObservable

GetAllUserReceived() 공개 메소드

Gets all the events that have been received by a given user.
http://developer.github.com/v3/activity/events/#list-events-that-a-user-has-received
public GetAllUserReceived ( string user ) : IObservable
user string The login of the user
리턴 IObservable

GetAllUserReceived() 공개 메소드

Gets all the events that have been received by a given user.
http://developer.github.com/v3/activity/events/#list-events-that-a-user-has-received
public GetAllUserReceived ( string user, ApiOptions options ) : IObservable
user string The login of the user
options ApiOptions Options for changing the API response
리턴 IObservable

GetAllUserReceivedPublic() 공개 메소드

Gets all the events that have been received by a given user.
http://developer.github.com/v3/activity/events/#list-public-events-that-a-user-has-received
public GetAllUserReceivedPublic ( string user ) : IObservable
user string The login of the user
리턴 IObservable

GetAllUserReceivedPublic() 공개 메소드

Gets all the events that have been received by a given user.
http://developer.github.com/v3/activity/events/#list-public-events-that-a-user-has-received
public GetAllUserReceivedPublic ( string user, ApiOptions options ) : IObservable
user string The login of the user
options ApiOptions Options for changing the API response
리턴 IObservable

ObservableEventsClient() 공개 메소드

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