Category: .NET

Does SignalR Guarantee Message Deliverability?

April 6, 2021 · 5 min read
SignalR doesn't guarantee the deliverability of messages sent from the server. This might be a problem for you, so let's discuss the problem and why SignalR doesn't try to solve it automatically.

SignalR AbortController is Undefined on Older Browsers

March 3, 2021 · 5 min read
Recently, I updated a client application to the latest versions of SignalR (including the NPM module). One of our users uses a SmartTV to view the page, and it stopped working due to 'AbortController is Undefined'.

Monitoring ASP.NET Core Application Health with Health Checks 🩺

February 23, 2021 · 5 min read
Failures in your application often are not just because the code you wrote is bad, it's often because services or dependencies you depend on are having an issue. Health Checks in ASP.NET Core help you identify the problem areas.