Skip to content
Alexandre Sanlim edited this page Dec 7, 2020 · 5 revisions

Welcome to the DotNet.Slack.ExceptionSend wiki!

How to use it?

The project is up on NuGet and you can find it by searching for Slack.Exception.Send, with this package you will receive the errors received by your customers, simply doing this:

try
{
    //your code here
}
catch (System.Exception ex)
{
    ex.SendToSlack();
}