Skip to content
This repository has been archived by the owner on Jun 19, 2023. It is now read-only.

noobot/SlackConnector

Repository files navigation

SlackConnector

Build status Test status Nuget.org

SlackConnector is a C# client to initiate and manage an open connection between you and the Slack servers. SlackConnector uses web-sockets to allow real-time messages to be received and handled within your application.

History

This library was originally extracted MargieBot and has iterated on it's own to become testable and progress without being coupled to any one implementation. This library has been built for noobot, however it can easily be used in any project due to it's decoupling.

Installation

Install-Package SlackConnector

Usage

ISlackConnector connector = new SlackConnector.SlackConnector();
ISlackConnection connection = await connector.Connect(botAccessToken);
connection.OnMessageReceived += MessageReceived;
connection.OnDisconnect += Disconnected;

Features

  • Async by default
  • Easy setup
  • Real-time communication
  • Unit tested