Home
Murat Suzen
Cancel

What is Rate Limit? How to use in .NET 8?

Rate limiting restricts the number of requests a client can make to an API endpoint. By doing so, it prevents abuse, protects resources, and maintains system stability. There are various rate limit...

Dependency Injection and Lifecycle in .NET 8

Hello, in this article I will examine the Dependency Injection (DI) technique, which is a software design pattern that provides Inversion of Control (IoC) between classes and dependencies in .NET 8...

ASP.NET Core Http Security Header

Let’s examine how the Http Security Header structure is used on .NET Core in a sample ASP.NET Core project. First we will create a blank web project. dotnet new web -o httpsecurityheader After c...

Adding Multiple Languages ​​with ASP.NET Core MVC

Hello, in this article we will examine how we can add multiple language support to ASP.NET Core MVC application. First of all, since we will keep the language definitions in resource files, we will...

What is ASP.NET Core Middleware? How to use?

Hello, in this article we will examine the middleware structure in ASP.NET Core. Middleware is used to perform the operations between the request and response process and to guide the process when ...

Using API Key Authorization with Middleware and Attribute on ASP.NET Core Web API

Hello, in this article, we will API Key authorization on ASP.NET Core Web API with middleware and attribute. We will create an ASP.NET Core Web API project named ApiKeyAuthentication. Using Middle...

Using Multiple DbContext on .NET 6 Web API With Repository Pattern

Hello, I this article, I will show how to use of multiple DbContext in an ASP.NET Web API (.NET 6.0) project. We will connect to 2 different databases by changing the DbContext. Now let’s create AS...

JQuery Datatables Kütüphanesinin .NET Core ile Server Side Kullanımı

Web projelerinde en çok kullanılan Jquery veri tablo kütüphanelerinden biri olan Datatables kütüphanesinin .NET Core üzerinde sunucu taraflı kullanımını inceleyeceğim. Datatables herhangi bir HTML ...

ASP.NET Core Http Security Header

Http Security Header yapısının .NET Core üzerinde nasıl kullanıldığını örnek bir ASP.NET Core projesinde inceleyelim. Öncelikle boş bir web projesi oluşturuyorum. dotnet new web -o httpsecurityhea...

ASP.NET Core Middleware Nedir? Nasıl Kullanılır?

Merhabalar, bu makalede ASP.NET Core’da ara katman (Middleware) yapısını inceleceğiz. ASP.NET Core’da ara katman (Middleware) yapısı, uygulama çalıştığında bir istemciden (Client) gelen taleplerin ...