How to implement effective retry logic in C#
In an ideal world, every operation we execute, every API we call, and every database we query, would always work flawlessly. Unfortunately, we live in a world where network outages,…
Favourite tutorials for developers
.NET is a free and open-source application platform supported by Microsoft. C# is the programming language for .NET. It’s strongly-typed and type-safe and has integrated concurrency and automatic memory management. .NET is supported on Android, Apple, Linux, and Windows operating systems. It’s available in several Linux distributions, like Red Hat Enterprise Linux and Ubuntu. .NET includes a standard set of libraries and APIs, ranging from collections, to networking, to machine learning. NuGet is the package manager for .NET and contains over 300,000 packages.
In an ideal world, every operation we execute, every API we call, and every database we query, would always work flawlessly. Unfortunately, we live in a world where network outages,…
Learn to send emails in C# using SMTP with .Net framework. Include namespaces System.Net and System.Net.Mail, set up MailMessage with sender, recipient, subject, and body. Configure SmtpClient with server details,…
.NET Core makes it easy to get started with creating any type of application, whether it be an MVC app, Web API, or desktop software. To achieve this, .NET provides…
In this tip, we will learn about WPF Commands. Commands go very well with MVVM pattern (Model- View-ViewModel). We will also see how actually the view knows about its ViewModel…
I am going to explain about JWT which stands for JSON Web Token in this article. It is useful for Authentication and Authorization. Authentication is validating the user with credentials…
This article is about JWT authentication using .NET 8.0 version. We will be using the Microsoft Identity framework to store user and role information. Authentication is the process of validating…
This article is a step-by-step guide to implementing JWT-based Authentication in ASP.NET Core API. The goal of this article is to first start by learning how JSON Web Tokens (or…
This article explains how to get started with Identity.UI in ASP.Net Core MVC user authentication and registration. In this article, we discussed how to use Identity UI in ASP.NET Core…
JWT stands for JSON Web Token digitally signed using a secret key by a token provider. It helps the resource server to verify the token data using the same secret…
Entity Framework Core allows you to store and retrieve data to and from an in-memory database. It’s a quick and easy way to test your methods ASP.NET Core web applications…