Files
MTSC/MTSC.UnitTests/RoutingModules/ExceptionThrowingModule.cs
T
Alexandru Macocian b015132527 Configurable return 500 on exception in http handlers.
Configurable websocket hearbeat.
Nit fixes.
2021-05-12 14:08:25 +02:00

15 lines
364 B
C#

using MTSC.Common.Http;
using MTSC.Common.Http.RoutingModules;
using System.Threading.Tasks;
namespace MTSC.UnitTests.RoutingModules
{
public class ExceptionThrowingModule : HttpRouteBase
{
public override Task<HttpResponse> HandleRequest(HttpRequest request)
{
throw new System.NotImplementedException();
}
}
}