TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About API Controller
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sardar Mudassar Ali Khan (4)
Vinoth Xavier (1)
Atul Rawat (1)
Akshay Shedwad (1)
Ajay Kumar (1)
Vijay Yadav (1)
Jobin S (1)
Sanjoli Gupta (1)
Gajendra Jangid (1)
Guest User (1)
John Kocer (1)
Rajeev Ranjan (1)
Sandip G. Patil (1)
Sibeesh Venu (1)
Suraj Sahoo (1)
Related resources for API Controller
No resource found
Converting HTML to PDF or Image in C# Using wkhtmltopdf
11/13/2024 9:02:59 AM.
This guide explains generating PDFs and images from HTML using wkhtmltopdf in C#. With wkhtmltopdf's Webkit-based engine, convert HTML content, including complex CSS and JavaScript, into high-qual
Create Web API in MVC 6
10/8/2024 8:48:58 AM.
Learn how to create a Web API using ASP.NET MVC 6 in this comprehensive guide. We’ll cover essential topics like setting up the MVC framework, building API controllers, implementing RESTful services,
Use of Automapper in ASP.NET Core
8/16/2024 7:33:36 AM.
AutoMapper is a powerful .NET library that simplifies object-to-object mapping in ASP.NET Core applications. It helps in converting Data Transfer Objects (DTOs) to domain models and vice versa, stream
CQRS Simplified - Explained and Implemented
7/30/2024 9:13:28 AM.
CQRS (Command Query Responsibility Segregation) in .NET Core separates read and write operations for better scalability and performance. By using distinct models for commands and queries, it simplifie
Understanding and Using Scope in .NET Core
7/26/2024 5:48:49 AM.
In .NET Core, dependency injection (DI) manages service lifetimes with three scopes: Transient (new instance per request), Scoped (one instance per request), and Singleton (one instance shared across
Integrating PayU Payment Gateway with .NET Core API
7/10/2024 12:35:37 PM.
Integrate PayU with your .NET Core API to securely accept payments. This guide covers creating a new .NET Core Web API project, configuring PayU settings, and implementing the payment service. Steps i
What is DMA and How to Enable DMA in Windows 8
4/12/2024 6:30:47 AM.
DMA allows memory system control without CPU involvement, reducing CPU overhead during data transfer between memory and devices. Steps for enabling DMA in Windows 8 involve accessing Device Manager, n
Unit Test in ASP.NET Core Application
3/7/2024 6:43:16 AM.
Creating unit tests for an ASP.NET Core API controller involves service mocking and exception handling. Set up your project, install packages, create a test project, mock the service, write tests, han
Creating A CRUD With ASP.NET Core And EF Core
2/28/2024 11:41:41 AM.
Entity Framework Core (EF) is an ORM that makes it simpler to work with database by using POCO classes that map to database entities and DbContext to interact with them.
How To Create To-Do CRUD Operation With ASP.NET MVC Core, Angular 4.0
2/21/2024 10:21:43 AM.
This training session covers how to utilize the Todo in-memory database via the TodoRepository and create a custom ASP.NET MVC API controller with CRUD (Create, Read, Update, Delete) operations.
API Development Using Strategy Design Pattern with 3-Tier Architecture
11/13/2023 6:36:52 AM.
In today's fast-paced software development landscape, creating well-structured and maintainable applications is crucial. One popular design pattern that can greatly enhance the organization and fl
ASP.NET Core Web API Development with Memento Pattern
10/20/2023 6:25:36 AM.
The Mediator Pattern is a behavioral design pattern that promotes loose coupling among objects by centralizing their communication through a mediator object. In this pattern, multiple objects interact
CRUD Operations in ASP.NET Core with 3-Tier Harmony and Command Builder Design Pattern
10/4/2023 9:21:02 AM.
Command Builder Design Pattern in an ASP.NET Core Web API using a Three-Tier Architecture for CRUD operations. For the sake of this example, let's assume you have a model named CSharpCornerArticle
Mastering Dependency Injection and Third-Party IoC Integration
8/29/2023 8:59:26 AM.
Dependency Injection (DI) is a design pattern used in software development to achieve loosely coupled components by allowing the injection of dependencies into a class rather than creating them within
Getting Started With ASP.Net Web API 2 : Day 5
5/24/2021 10:02:36 AM.
In this article, we will learn how to link a MVC Controller to an API Controller.
Invoking WebAPI Controller Action With Multiple Parameters In CORS Enabled Web Application
12/15/2016 4:01:49 AM.
In this article, you will learn how to invoke WebAPI Controller Action with Multiple Parameters in CORS Enabled Web Application.
Working With API Help Page Controller In Web API
7/8/2016 1:05:51 AM.
In this article we are going to see how we can enable the API descriptions for a better understanding of how our API controller works and what exactly it is supposed to do.
Using Web Api in MVC 4
1/18/2015 2:03:52 PM.
Here you will see the steps to learn about Web APi controllers & their behaviour using a Demo.