C# Класс Evbpc.Framework.Integrations.Bitbucket.EventDispatcher

Dispatches events received from the Bitbucket API.
Наследование: IEventDispatcher
Показать файл Открыть проект

Открытые методы

Метод Описание
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