C# 클래스 Evbpc.Framework.Integrations.Bitbucket.EventDispatcher

Dispatches events received from the Bitbucket API.
상속: IEventDispatcher
파일 보기 프로젝트 열기: EBrown8534/Framework

공개 메소드들

메소드 설명
Dispatch ( string eventKey, string json ) : void

Determines what event has happened and triggers event as appropriate.

보호된 메소드들

메소드 설명
OnIssueCommentCreatedReceived ( EventArgs e ) : void

Throws the IssueCommentCreatedReceived event.

OnIssueCreatedEventReceived ( EventArgs e ) : void

Throws the IssueCreatedEventReceived event.

OnIssueUpdatedEventReceived ( EventArgs e ) : void

Throws the IssueUpdatedEventReceived event.

OnPushReceived ( EventArgs e ) : void

Throws the PushReceived event.

메소드 상세

Dispatch() 공개 메소드

Determines what event has happened and triggers event as appropriate.
public Dispatch ( string eventKey, string json ) : void
eventKey string The key for the event.
json string The JSON source for the event.
리턴 void

OnIssueCommentCreatedReceived() 보호된 메소드

Throws the IssueCommentCreatedReceived event.
protected OnIssueCommentCreatedReceived ( EventArgs e ) : void
e EventArgs The args to throw into the event.
리턴 void

OnIssueCreatedEventReceived() 보호된 메소드

Throws the IssueCreatedEventReceived event.
protected OnIssueCreatedEventReceived ( EventArgs e ) : void
e EventArgs The args to throw into the event.
리턴 void

OnIssueUpdatedEventReceived() 보호된 메소드

Throws the IssueUpdatedEventReceived event.
protected OnIssueUpdatedEventReceived ( EventArgs e ) : void
e EventArgs The args to throw into the event.
리턴 void

OnPushReceived() 보호된 메소드

Throws the PushReceived event.
protected OnPushReceived ( EventArgs e ) : void
e EventArgs The args to throw into the event.
리턴 void