top of page
Search

Types of caching in ASP.NET
Caching is a mechanism in ASP.NET that allows you to store data in memory for a specified period of time so that it can be reused quickly...
The Tech Platform
Feb 6, 2023

.NET Development Tools
A Development Tool is a computer program that software developers use to create, debug, maintain, or otherwise support other programs and...
The Tech Platform
Dec 20, 2022

Azure Application Insights in ASP.NET Core
Azure Application Insights is an extensible application performance management (APM) service that can be used to monitor performance,...
The Tech Platform
Nov 9, 2022

Global Exception Handling in ASP.NET Core
What is Global Exception Handling? The Global Exception Handler is a type of workflow designed to determine the project’s behavior when...
The Tech Platform
Oct 25, 2022

Creating an in-memory cache for .NET 6 Web API
Caching is the technique of storing frequently accessed data at a temporary location for quicker access in the future. ASP.NET Core...
The Tech Platform
Oct 17, 2022

Introduction to Worker Services in ASP.NET Core
Worker Services in ASP.NET Core provide a robust foundation for building efficient, long-running background tasks. These specialized...
The Tech Platform
Sep 6, 2022

How to consume ASP.NET Core Web API using RestSharp
What is RestSharp? RestSharp is a comprehensive, open-source HTTP client library that works with all kinds of DotNet technologies. It can...
The Tech Platform
Sep 2, 2022

Using Quartz.NET with ASP.NET Core and worker services
Quartz.NET is a full-featured, open source job scheduling system that can be used from smallest apps to large scale enterprise systems....
The Tech Platform
Aug 23, 2022

How to Return HTML From ASP.NET Core Web API
A typical web API returns JSON or XML responses. However, rare cases exist where we need to return responses in other formats. In this...
The Tech Platform
Aug 17, 2022

Introduction to Channels in .NET
What are Channels? Channel is a concept for passing data between producers and consumers. More specifically, a channel has a queue where...
The Tech Platform
Aug 10, 2022
bottom of page