C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
George (7)
Parthiv Suthar(3)
Kirtesh Shah(3)
Mahender Pal(3)
Venkatasubbarao Polisetty(3)
Anupam Maiti(3)
Shahbaz Hussain(3)
Emanuel Martins(2)
Debabrata Ghosh(2)
Amit Mohanty(2)
Arun Potti(2)
Dhruvin Shah(2)
Jay Krishna Reddy (2)
Miguel Teheran(2)
Rikam Palkar(2)
Mahesh Chand(1)
Saurav Kumar(1)
Darshan Adakane(1)
Kripanshu Kumar(1)
Anurag Chaudhary(1)
Mushtaq M A(1)
Datta Sai Krishna(1)
Velladurai (1)
Allen Oneill(1)
Dmytro Hubernatorov(1)
Tahir Ansari(1)
Jobin S(1)
Sangeetha Sundaramoorthy(1)
Jay Pankhaniya(1)
Shankarrao Gedala(1)
Vineet Desai(1)
Vahid Farahmandian(1)
Shriram Pophali(1)
Ayush Gupta(1)
George Papadopoulos(1)
Ishika Tiwari(1)
Sagar Rane(1)
Kajul Nisha(1)
Jaydeep Patil(1)
Ravi Raghav(1)
Aymen Amri(1)
Shivam Payasi(1)
Tural Suleymani(1)
Jochen Bartlau(1)
Matea Andrei(1)
Shirsendu Nandi(1)
Furqan Zafar(1)
Vijai Anand Ramalingam(1)
Avinash Kunnure(1)
Yousef Shawareb(1)
Sardar Mudassar Ali Khan (1)
Manoj Mittal(1)
Sanjay Mrinal Kumar Kodangi(1)
Yogesh Kumar(1)
Sandhya Satam(1)
Kunj Sangani(1)
Sai Kumar Koona(1)
Vinodh Narayanan(1)
Menaka Priyadharshini B(1)
Puneet Kankar(1)
Nilanjan Dutta(1)
Avnish Kumar(1)
Madhan Thurai(1)
Saleh Qadeer(1)
Khaja Moizuddin(1)
Nagaraj M(1)
Salman Beg(1)
Pankaj Singh(1)
Jayesh Sonawane(1)
Suthahar Jegatheesan(1)
Ahmad Mozaffar(1)
Mohammad Sbeeh(1)
Omar Rodriguez(1)
Sarathlal Saseendran(1)
Resources
No resource found
How Does TypeScript Help When Consuming ASP.NET Core Web APIs?
Feb 28, 2026.
TypeScript bridges the gap between React and ASP.NET Core APIs, preventing contract drift. It offers strong typing, safer refactoring, and automatic model generation.
Why Does a Mobile App Consume Too Much Battery in the Background?
Jan 29, 2026.
Discover why your phone battery drains fast even when apps aren't in use! Learn about background processes, location tracking, and optimization issues. Get tips!
How to Create or Update a Lookup Column Using Web API in Power Pages
Jan 29, 2026.
Learn how to create and update lookup columns in Power Pages using the Web API. This guide covers configuration, table permissions, and web role assignments for seamless integration.
REST - Myths and Best Practices
Jan 02, 2026.
This article is a guide to building web services that work as smoothly as the world's best websites. It clears up the common mistake that REST is just about "sending data" and explains that it is actually a set of rules for making the internet predictable and organized.
How to Restrict Dataverse Table Records to Logged-in Users in Power Pages
Jan 01, 2026.
Learn how to restrict Dataverse table records to logged-in users, ensuring they only see their data. Implement contact-based access control for improved security.
How to perform CRUD operations on Dataverse using WebApi in Power Pages
Dec 13, 2025.
Learn how to perform CRUD operations on Dataverse using the Web API in Power Pages. Step-by-step guide with JavaScript code, custom UI, and GitHub source code for reference.
🔥 How to Consume Web API in ASP.NET MVC Using HttpClient
Jul 24, 2025.
Are you building an ASP.NET MVC application and need to fetch data from a Web API? Look no further!In this guide, you’ll learn how to consume Web API using the HttpClient class in ASP.NET MVC with real examples and best practices.
Integrating React with ASP.NET Core 8 in Visual Studio 2022
Jul 21, 2025.
Build a full-stack app by combining React (via Vite) with ASP.NET Core 8 Web API. Use Visual Studio 2022 for seamless development, CORS for connectivity, and fetch data from a .NET backend using RESTful endpoints.
Creating a WebApi Project in .NET 9 [GamesCatalog] 18
Apr 28, 2025.
Learn how to set up an ASP.NET Core Web API with MySQL using Entity Framework Core. This guide covers creating projects, configuring the database, defining DTOs, adding migrations, and creating a users table in the database.
Consuming HTTP Calls in .NET MAUI Using HttpClient
Mar 27, 2025.
Learn how to use HttpClient in .NET MAUI to perform GET, POST, PUT, and DELETE operations on a REST API. Build a simple UI and display JSON responses using alerts.
Consuming an API and Populating a List with the Results in MAUI MVVM .NET 9 [GamesCatalog] - Part 4
Mar 03, 2025.
Learn how to consume an API and populate a list with the results in a .NET 9 MAUI MVVM app. In this part of the GamesCatalog series, you'll fetch data from an API, bind it to a list, and implement best practices for handling API responses efficiently.
Global Exception Handling in ASP.NET Core Web API
Jan 14, 2025.
Learn how to implement Global Exception Handling in Asp.Net Core WebAPI using Custom Middleware. Handle errors efficiently with ExceptionMiddleware, register it in program.cs, and see how to manage exceptions in your application seamlessly.
Basic Authentication in Asp.NET Core Web API
Jan 11, 2025.
This article explains implementing Basic Authentication in ASP.NET Core WebAPI using .NET Core 8. It covers authentication concepts, step-by-step implementation, and demonstrates a practical example with code and diagrams.
Handling Transient Failures in .NET 8 With Polly
Nov 04, 2024.
This article discusses implementing a retry mechanism for handling transient faults in service interactions. It defines transient faults, such as temporary network issues or resource exhaustion, and emphasizes the importance of retrying requests.
Postman for WEBAPI testing Part I
Jun 30, 2024.
Learn how to set up Postman, create and manage HTTP requests, and test your APIs efficiently. Discover key features like collections, environments, and test scripts to streamline your API development process.
How to do .NET 8 Migration with Existing Tools?
Jun 19, 2024.
Microsoft's technology ecosystem spans desktop, web, and mobile apps, each requiring specific frameworks. To upgrade applications effectively, use Visual Studio 2022 with .NET Framework or Core, and the Upgrade assistant extension.
Consume API in Repository Design Pattern
Jun 18, 2024.
Learn how to effectively consume APIs using the Repository Design Pattern. This approach enhances code organization by separating data access logic into reusable repositories, promoting maintainability and testability.
Web API in Azure (3), Consume Web API with a Security Token
May 09, 2024.
This article will discuss how to use Postman to access Web API. This article focuses on accessing and securing a Web API registered on Azure Identity Platform. It covers tools like Postman and Swagger for testing and setting security with examples.
Azure Immersive Reader Technology - geting started!
Feb 14, 2024.
Using Azure Immersive Reader Technology to Help People Consume and Understand Text Based Information
Reduction Consumed Storage in SQL DB
Dec 11, 2023.
The simple way to reduce consumed DB storage on production app, with data migration and without dramatic changes in DAL (no additional services are required)
Simplify API Data Handling with ASP.NET Core Model Binding
Sep 21, 2023.
In this article, we explore the versatile world of model binding in ASP.NET Core REST APIs. Model binding is a critical feature that simplifies data handling by automatically mapping HTTP request data to .NET objects. We'll delve into real-world use cases, including binding query parameters, route data, request bodies, and headers. Discover how model binding streamlines API development, improves code readability, and ensures data consistency. Whether you're a beginner or an experienced ASP.NET Core developer, understanding model binding is crucial for building efficient and maintainable RESTful APIs.
Achieving Dependency Injection in .NET Core WebAPI
Sep 13, 2023.
This article outlines the process of implementing Dependency Injection (DI) in a .NET Core Web API application. DI is crucial for managing dependencies, enhancing modularity, and enabling testability. It begins by explaining the importance of DI in a Web API and then provides a step-by-step guide on how to achieve it.
Creating a WEB API POST Method to Retrieve Data from SQL Database using ASP.NET MVC Application
Aug 23, 2023.
In this article, I have explained how to create a WEB API POST method to retrieve data from SQL database using Asp.net MVC Application.
Building a Secure .NET Core Web API for Azure AD Integration with SharePoint Online SPFx
Aug 05, 2023.
Learn how to build a secure .NET Core Web API integrated with Azure AD for seamless authentication and authorization with SharePoint Online SPFx web parts. Enhance your application's security and user experience with this comprehensive guide.
How to Consume Custom Triggers in Real Time Journey D365 Marketing?
Aug 01, 2023.
Create a new journey in the Marketing app, set a custom trigger (WhatsApp integrate), and map attributes for messaging.
Consumer Driven Contract Testing Using PactNet
Jul 30, 2023.
Get started with writing consumer driven contract tests for .NET core web apis using PactNet to validate api contracts between producers and consumers.
Test Web API using HTTPREPL
Jul 25, 2023.
The HTTP Read-Eval-Print Loop (REPL) is a lightweight and cross-platform command-line tool that's supported everywhere .NET Core is supported. Using this tool you can start discovering and exploring web APIs just like as you are exploring files and folders in command prompt.
Implementing Versioning in ASP.NET Core WebAPI
Jun 01, 2023.
Implementing Versioning in ASP.NET Core WebAPI. This article provides a step-by-step guide to implementing versioning in ASP.NET Core WebAPI, enabling backward compatibility, managing API changes, and ensuring seamless transitions between versions with practical examples.
Logging in ASP.NET Core WebAPI using NLog
Jun 01, 2023.
Logging in ASP.NET Core WebAPI using NLog
Power Pages - Dynamic execution of long FetchXML without $batch
May 17, 2023.
Dynamic execution of long FetchXML without $batch
WebAPI Unit Testing with MSTest Project in .Net 7
May 03, 2023.
Today I will create the ASP.Net Web API in .Net 7 and I will test module with MSTest Unit Testing Project.
Create JSON Web Tokens For Development And Testing
Apr 27, 2023.
Developing and testing an API that requires authentication through a JSON Web Token can be challenging. Use the dotnet-devjwt tool to generate custom tokens for testing your endpoints locally
How to consume multiple GET API in one view in MVC
Apr 14, 2023.
we will learn How we can consume multiple GET APIs in one view in MVC
Implementing CURD Using Dapper(ORM) With C# WebAPI
Mar 28, 2023.
In this article, you will learn how to implement CURD using Dapper(ORM) with C# WebAPI.
Consume ChatGPT Open AI API Inside .Net Core Application Using Razor Pages
Feb 23, 2023.
This article demonstrates how to develop a ChatGPT application utilizing Razor pages and the OpenAI API in an ASP.Net Core web application.
How To Create A Table Record In A Dataverse Environment From Postman
Nov 25, 2022.
Step by step process to create a table record in the dataverse environment using Postman Tool.
How To Get The Dataverse Web API Endpoint Details In The Microsoft PowerApps
Oct 26, 2022.
Step by step process to get the Dataverse Web API Details in Microsoft Power Apps
Consume The .NET Core 6 Web API In PowerShell Script And Perform CRUD Operation
Oct 18, 2022.
In this article, you will learn how to consume the .NET Core 6 Web API in PowerShell script and perform CRUD operation
Clean Architecture With ASP.NET Core WebAPI
Oct 03, 2022.
Asp.net Core WebAPI - Clean Architecture, Clean Architecture With ASP.NET Core WebAPI
Consuming REST APIs In Golang
Sep 19, 2022.
In this article, you will learn how to consume REST APIs in Golang.
Implementing Prompt dialog in D365 CE - Part I
Sep 01, 2022.
This article is about implementing dialog in Dynamics 365 CE
Consume Environment Variables Directly In Power Apps
Aug 30, 2022.
In this article, we will learn how we can consume environment variable directly to Power Apps Canvas App.
Polymorphism In Web API .Net Core 6
Aug 22, 2022.
In this article, you will learn how to expose polymorphic data in the same controller's method.
Consuming Web API Using jQuery(AJAX)
Aug 09, 2022.
in this article, I will explain how we can access data from a web API using ajax jQuery.
Consuming Apache Axis Service In .NET Core
Aug 09, 2022.
In this article, you will learn how to consume Apache Axis in .NET core.
Consume Web API By MVC In .NET Core (4), .NET Clients
Jul 04, 2022.
In this article, you will learn how to consume Web API By MVC In .NET Core (4), .NET Clients.
Consume Web API By MVC In .NET Core (3), HttpWebRequest
Jun 27, 2022.
Discuss Consume Web API By MVC In .NET, Client
Can Azure Functions Replace Web API?
May 24, 2022.
Is it worth Migrating the ASP.Net Core Web API Project to Azure Functions? Learn here how and why to migrate.
Can Azure Function Replace Web API
May 20, 2022.
Is it worth Migrating the ASP.Net Core Web API Project to Azure Function.
Update Associations using XRM WebApi With WebResource In Dynamics CRM
May 20, 2022.
In Dynamics 365 CRM, for certain requirements we need to update associations in the related tables i.e., update lookup values. As an example, for a selected contact record account lookup will be updated.
Update Record Using XRM WebAPI With Webresource In Dynamics CRM
May 11, 2022.
In Dynamics 365 CRM, for certain requirements data needs to be updated for a given record, based on GUID of an entity record. As an example, for a selected contact record respective fields details were passed to update contact record.
Adding Custom C# Slash Commands To Mattermost
Apr 29, 2022.
This article describes a prototype that can be reused easily to host custom slash commands for the popular Mattermost team collaboration software. A slash command is a functional extension that allows to render a complex message based on the command's input on behalf of the user using the command.
Configure And Host On IIS For .Net Core/.Net 5+ Web Application In Windows 10
Feb 17, 2022.
In this article, you will learn how to configure and host on iis for .net core or .net 5+ web applications in windows 10.
Consuming GRPC Service At Client Based .NET Core 6.0 Entity Framework For CRUD Operation
Feb 09, 2022.
In our previous article (GRPC Service Create Using .NET Core 6.0 Entity Framework For CRUD Operation (c-sharpcorner.com)we have seen how to create the GRPC service. In this article we are going to see to consume the GRPC service at the client
Simple ASP.NET Core Minimal API
Feb 01, 2022.
In this article, you will learn how to create a simple Asp .Net Core Minimal Web Api.
How To Access Parameters From AWS Systems Manager Parameter Store In .NET 6 Web API
Jan 05, 2022.
In this article, you will learn how to access parameters from AWS Systems Manager Parameter store in .NET 6 Web API.
JWT Token Authentication And Authorizations In .Net Core 6.0 Web API
Dec 21, 2021.
In this article, you will learn about Jwt Token Authentication and Authorizations in .Net Core 6.0 WEB API.
How To Consume Web API In An ASP.NET Gridview Using HttpClient
Nov 24, 2021.
In this article, you will learn how to consume Web API in an ASP.NET GridView using HttpClient.
Connecting .NET API To ApsaraDB With postgreSQL
Nov 15, 2021.
A Guide for creating and connecting a simple .NET API to ApsaraDB with postgreSQL.
Uploading Files With React.js And .NET
Nov 13, 2021.
You will learn how to send files to .NET API from a React.js application.
How To Deploy ASP.NET Core 5 WebAPI Website On Server Using Visual Studio 2019
Oct 18, 2021.
In this article, you will learn how to deploy Asp.net Core 5 WebApi Website on Server Using Visual Studio 2019.
Use Postman Tool To Create And Update Records In Dynamics CRM
Sep 29, 2021.
One of the common scenarios is to work with CRM Web APIs is to quickly create or update records in Dynamics CRM. Within less time, we can achieve this requirement using Postman tool, here as an example going to create and update contact record.
Consume SharePoint Online CSOM (REST API) With .NET Core 3.1
Feb 18, 2021.
This article demonstrates how to consume SharePoint Online CSOM (REST API) with .NET Core 3.1 framework.
CORS (2), Consume .NET Core Web API By Angular Client in Same Origin
Feb 05, 2021.
This article gives a sample of Web API consumer, Angular client.
Implementing Client Credentials Grant Type Using Owin In ASP.NET Web API
Jan 05, 2021.
In this article, you will learn how to implement Client Credentials Grant Type using Owin in ASP.NET Web API.
CORS (1), Consume .NET Core Web API By MVC in Same Origin
Dec 30, 2020.
This is an article following Consume Web API By MVC In .NET Core (2), to enable CORS to make an access from Cross Origins.
Consume Web API By MVC In .NET Core (1), Server And Framework
Dec 21, 2020.
In this article, we create a ASP.NET Core 5.0 MVC app and associated with a Web API service in it by regular way. Then we write one line code for MVC client to consume Web API.
Consume Web API By MVC In .NET Core (2), HttpClient
Dec 21, 2020.
In this article, we create a ASP.NET Core 5.0 MVC app and associated with a Web API service in it by regular way. Then we write one line code for MVC client to consume Web API.
Using Mediator In Web API's For CQRS Pattern
Dec 08, 2020.
Implement Mediator pattern in Web APIs to embrace CQRS architecture. Utilize separate commands and queries for handling requests, promoting better code organization, and decoupling components, enhancing scalability and maintainability.
WebAPI 2.0 Basic Auth
Nov 02, 2020.
In this article, you will learn about WebAPI 2.0 Basic Auth.
WebAPI Basics
Oct 21, 2020.
In this article, we are going to learn what is ASP.NET WebAPI and why we need to use webAPI and parameter binding in WebAPI.
Create An ASP.NET Core API With Azure AD Authentication And Consuming It In SPFx
Oct 13, 2020.
This article is a step by step guide for creating an ASP.NET secure REST API using Azure AD and consuming it in SPFx
Protect APIs With Security Headers Using Azure API Management Policies
Aug 24, 2020.
In this article, you will learn about how to protect APIs with Security Headers using Azure API Management Policies.
WebAPI Performance Testing Using Apache JMeter
Aug 18, 2020.
In this article, you will learn about WebAPI Performance Testing using Apache JMeter.
Consume OData Feed With C# Client Application
Aug 03, 2020.
Understanding how to Consume OData feed by building a C# Client Application.
Consume Microsoft Graph API Using A PnP Graph From SPFx-Webpart
Jul 03, 2020.
In this article, I explain how to consume a Microsoft graph API using @pnp/graph from your SPFx-Webpart
COVID 19 Tracker With WPF - Part Two
Jun 15, 2020.
We will learn about Combobox in WPF.
COVID 19 Tracker With WPF, Material Design And WebAPI
Jun 14, 2020.
This project is made for educational purposes. You learn how to add styles, design UI, use material design, and much more.
Calling Entity Bound Actions Using Xrm.Web API With Entity Collection
May 29, 2020.
This article is about how to call entity bound action using Xrm.WebApi.
Consuming Web API In .Net Core 3.1 MVC
May 28, 2020.
In this article, You will learn how to consume web API in .Net Core 3.1.
Build Crud Operation Using Angular 9 And .Net Core 3.1 WebAPI And Deploy To Azure
May 21, 2020.
In this article you will learn how to build CRUD operations using Angular 9 and Dot Net Core 3.1 WebApi and Deploy to Azure.
Produce And Consume Messages To RabbitMQ Docker Container Using .NET Client
May 17, 2020.
Learn how to efficiently produce and consume messages using a RabbitMQ Docker container and a .NET client. This guide covers setting up RabbitMQ within a Docker environment, configuring the .NET client for message publishing and consumption, and ensuring seamless communication between your applications.
Build Power Apps Canvas App Consuming Form Processing AI Model - Power Platform AI Builder Series - Part Four
Apr 13, 2020.
In this article, we will talk about how we can consume Form Processor AI model in Power Apps and process our documents. Once a document is processed with the Form Processor component, we need to pre-populate the data to the SharePoint form. Once the form is submitted, our data will be stored to the SharePoint list.
Build an ASP.NET Core API Using the Existing Database
Jan 31, 2020.
This article will show you how to build a Web API with the new ASP.NET Core 3.0.
Concept Of WebAPI And Registering Custom App Using Client ID And Client Secret
Jan 24, 2020.
In this article we will learn about how to use webapi concept in sharepoint ,registering sharepoint app using client id and client secret and update created column of list using csom
Configuring Window Services Using ASP.NET Core WebAPI And Getting Values From AppSettings
Jan 21, 2020.
In this article, you will learn how to configure window services using ASP.NET Core WebAPI and getting values from AppSettings.
How To Consume RestAPI Using HttpClient In C#
Dec 30, 2019.
In this article, you will learn how to consume RestAPI using HttpClient in c#.
WebAPI Using Flask
Dec 30, 2019.
Flask, a micro framework, simplifies API development with its ease of use and flexibility. Widely adopted by high-traffic sites like LinkedIn, it offers simplicity in installation and coding. Sample code demonstrates its usage for both server-side and client-side interactions.
Trigger Azure WebJob By Using WebAPI
Nov 07, 2019.
Learn how to trigger and run Azure web jobs using a web API. This guide covers creating a sample ASP.NET application to make GET and POST calls for retrieving job statuses and running web jobs. Prerequisites include a Microsoft Azure account and an existing app service.
Angular 8 CRUD With OAuth2.0 In WebAPI - Part Two
Aug 27, 2019.
In today’s article, we are going to create an Angular App using Angular CLI. I will try to make it simple and clear so that understanding will be better.
Angular 8 CRUD With OAuth2.0 In WebAPI - Part One
Aug 27, 2019.
In this article, we are going to learn Oauth2.0 in ASP.NET Web API and consume that WebAPI on the front-end using Angular 8.
ASP.NET Web API Authorization By Basic Auth/OAuth2.0/JWT
Aug 07, 2019.
In this article, we are going to learn various authorization techniques of Web API. Mainly, we will discuss three major techniques - Basic Authentication, OAuth 2.1, and JSON Web Token(JWT).
WebAPI Using NodeJS, Express, And MySQL
Aug 07, 2019.
In this article, you will learn to create a Web API using NodeJS, Express, and MySQL.
How To Integrate Swagger With .NET Core WebAPI Application
Jul 29, 2019.
In this article, you will learn how to integrate Swagger with .NET core WebAPI application.
Consume HTTPS Service With Self-Signed Certificate In Xamarin.Forms
Jun 11, 2019.
In this article, you will learn how to consume HTTPS Service with a self-signed certificate in Xamarin.Forms.
Consume Any Web API From Within Your C# Applications Using AKSoftware.WebApi Library
May 03, 2019.
In this article, we will learn the trick of calling any web API from our C# based applications with just a few lines of code.
Create And Consume Azure Function From ASP.NET Core
Apr 18, 2019.
Azure Functions lets you execute your code in a serverless environment without having to first create a VM or publish a web application.You learn how create azure function by use Visual Studio 2017 tools. You then publish the function code to Azure. Then you call this function by using ASP.NET Core Web application.
Fetching Data Based On Date Field Using WebAPI
Apr 09, 2019.
This article is about using WebAPI request for datatime field in Dynamics 365 CE
RESTful WebAPI With Onion Architecture
Apr 02, 2019.
In this article, you will learn about RESTful WebAPI with Onion Architecture.
Connect MS SQL, MongoDB And MySQL Databases From Same MVC App Using Dependency Injection
Mar 25, 2019.
In this post, we will see how to connect MS SQL, MongoDB, and MySQL databases from the same MVC application. We will use dependency injection with Unity package to achieve this.