The TrelloWebHookClient provides support for creating and deleting Trello WebHooks programmatically. For more information about Trello WebHooks, please see https://trello.com/docs/gettingstarted/webhooks.html.
Inheritance: IDisposable
Exemplo n.º 1
0
 public TrelloWebHookClientTests()
 {
     _receiver     = new Uri("http://localhost/");
     _handlerMock  = new HttpMessageHandlerMock();
     _httpClient   = new HttpClient(_handlerMock);
     _trelloClient = new TrelloWebHookClient(TestToken, TestAppKey, _httpClient);
 }
Exemplo n.º 2
0
 public TrelloWebHookClientTests()
 {
     _receiver = new Uri("http://localhost/");
     _handlerMock = new HttpMessageHandlerMock();
     _httpClient = new HttpClient(_handlerMock);
     _trelloClient = new TrelloWebHookClient(TestToken, TestAppKey, _httpClient);
 }