HSTS Header Implementation in ASP.NET Core
In this article, we are going to learn how to implement the HSTS header in ASP.NET Core applications. So let's get going. What Is HSTS HTTP Strict...
How to Build a URL Shortener in .NET Applications
When working with URLs in our applications, there are times when they may become too long, clunky, unreadable, and difficult to use. In such situations, we can employ a URL shortener to make them shorter, more readable, and easier to share. Essentially, a URL...
Built-In Rate Limiting in ASP.NET Core Web API
In this article, we’re going to discuss Rate Limiting in ASP.NET Core, specifically version 8, and explore some ways of implementing it. So,...
Represent the Relationship of Properties Using Property Mappings From AutoMapper
In this article, we'll take a look at what property mappings are and how to retrieve them from AutoMapper. AutoMapper is a free .NET library that streamlines object mapping, reducing manual coding to boost development speed and minimize the risk of errors....
Better Minimal APIs Endpoint Organization With Carter in ASP.NET Core
In this article, we'll look closely at the Carter library and how we can use it in our ASP.NET Core projects. Let's get started! What...
Code Maze Weekly #210
Issue #210 of the Code Maze weekly. Check out what's new this week and enjoy the read. .NET and C# Top Picks Computing code coverage for a .NET project [www.meziantou.net] Computing code coverage without any dependencies is now possible in .NET. Check this article by...
How to Check the Total Number of Items Defined in an Enum
In this article, we talk about enums and, more specifically, how to find the total number of items defined in the enum. But first of all, let's define an enum. Let's go over the basics and see which constructors we have available in C# with Aram Tchekrekjian. Can you...
How to Test gRPC Services in ASP.NET Core
gRPC is a popular way to create fast and scalable API's in the .NET world. In this article, we explore how to test gRPC Services in .NET applications, and set up both unit and integration tests to ensure the reliability and performance of gRPC services. [sc...
How to Set a Default User-Agent on an HttpClient in ASP.NET Core
In this article, we will learn about the User-Agent header used while making HTTP calls. Then, we will understand how to set the default User-Agent on an HttpClient. [sc name="github"...
Restricting a Value Lifetime With the “scoped” Keyword in C#
In this article, we will discuss the scoped keyword in C#, explore its use case, and examine how it can be advantageous. The contextual keyword scoped in C# serves as a powerful tool for restricting the lifetime of a value. Employing the scoped modifier allows us to...
How to Validate File Upload Extensions in ASP.NET Core
In this article, we will see how we can validate file upload extensions and be certain that our applications are safe from malicious uploads. When receiving files uploaded by users, relying solely on file names to determine file types is risky. This is because we can...
Handling Circular References When Working With JSON in .NET
When working with JSON (JavaScript Object Notation) in .NET applications, developers often encounter challenges related to circular references, where objects circularly reference each other. In this article, we'll explore common scenarios involving circular...
The Best Way to Assign an Initial Value to Auto-Properties in C#
In this article, we will explore auto-properties and various ways to assign an initial value to it in C#. The C# programming...