Explore >> Select a destination


You are here

anthonygiretti.com
| | nathan.torkington.com
6.6 parsecs away

Travel
| |
| | elvanydev.com
9.0 parsecs away

Travel
| | Handling errors properly have always been an important and delicate task when it comes to making our applications more reliable. It is true that we can't know when an exception will happen, but it is true that we can control how our applications should behave under an undesirable state, such as a handled or unhandled exception scenario. When I say that we can control the behavior when the application fails, I'm not only referring to logging the error; I mean, that's important, but it's not enough! Nowadays with the power of cloud computing and all of its advantages, we can build robust, high availability and scalable solutions, but cloud infrastructure brings with its own challenges as well, such as transient errors. It is true that transient faults can occu...
| | nodogmablog.bryanhogan.net
11.6 parsecs away

Travel
| | This post shows how to use Polly with .NET 6 if you are taking advantage of top-level statements, minimal API endpoints, and the HttpClientFactory.
| | damienbod.com
23.3 parsecs away

Travel
| The article shows how to implement user management for an ASP.NET Core application using ASP.NET Core Identity. The application uses custom claims, which need to be added to the user identity after a successful login, and then an ASP.NET Core policy is used to authorize the identity. Code: https://github.com/damienbod/AspNetCoreAngularSignalRSecurity History 2023-01-07 Updated .NET 7, Angular...