top of page
Search
The Tech Platform
Aug 17, 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 10, 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
Coding : Principles, Types and Concepts
Coding is a list of step-by-step instructions that get computers to do what you want them to do. Coding makes it possible for us to...
The Tech Platform
Aug 10, 2022
C# Classes and Objects
A class is a user-defined blueprint or prototype from which objects are created. Basically, a class combines the fields and...
The Tech Platform
Aug 8, 2022
Tips for writing Clean C# Code
Clean code is the art of writing the code that humans can understand easily. Writing code is not easy task, but when it comes to writing...
The Tech Platform
Aug 2, 2022
How to Format Response Data in ASP.NET Core
In web development, the transmission of data between a server and a client is a fundamental aspect. Response data, representing the...
The Tech Platform
Jul 29, 2022
Introduction to Controller in ASP.NET Core
What is Controller ? The Controller in MVC architecture handles any incoming URL request. The Controller is a class, derived from the...
The Tech Platform
Jul 28, 2022
What is middleware in .NET? How it Works?
In .Net 5, middleware plays a vital role to handle the request-response pipeline. In here we are going to discuss the concept of...
The Tech Platform
Jul 25, 2022
Implementing Digest Authentication in .NET
TL;DR: You can read the code in GitHub repository here, the README provides an example usage. For one request we generate two requests...
The Tech Platform
Jul 22, 2022
Create a web API using minimal API ASP.NET Core
Minimal APIs are architected to create HTTP APIs with minimal dependencies. They are ideal for microservices and apps that want to...
bottom of page