RollbarSharp icon indicating copy to clipboard operation
RollbarSharp copied to clipboard

IExceptionFilter members different from documentation

Open glenhboonzaier opened this issue 9 years ago • 0 comments

According to the documentation:

public class RollbarExceptionFilter : IExceptionFilter
{
    public void OnException(ExceptionContext filterContext)
    {
        if (filterContext.ExceptionHandled)
            return;

        (new RollbarClient()).SendException(filterContext.Exception);
    }
}

However, IExceptionFilter requires the following methods:

public bool AllowMultiple { get; }

public Task ExecuteExceptionFilterAsync(HttpActionExecutedContext actionExecutedContext, CancellationToken cancellationToken)
{
    throw new System.NotImplementedException();
}

Please update the documentation.

glenhboonzaier avatar Oct 24 '16 12:10 glenhboonzaier