Tuesday, April 29, 2014

Manage WebApi Response using Media Types of MediaTypeFormatters In this article I’ll explore different ways to manage Manage WebApi Response using Media Types with help of Media Type Formatters. From the ASP.NET Web API perspective, serialization is the process of translating a .NET Common Language Runtime (CLR) type into a format that can be transmitted...

Thursday, April 24, 2014

WebApi: MediaTypeFormatters in WebApi

WebApi: MediaTypeFormatters in WebApi In this article I’ll share my Media Type formatting in WebApi. From the ASP.NET Web API perspective, serialization is the process of translating a .NET Common Language Runtime (CLR) type into a format that can be transmitted over HTTP. The default format I are either JSON or XML A media type formatter, which is...

Tuesday, April 22, 2014

Extension Helpers Method in MVC

Extension Helpers Method in MVC This article is more about the Custom Helpers and Extension Helper method in MVC with Razor View Engine. There are lots of ways to create your own helpers using Razor syntax. I am using one of them. Helper method is an optimum way to achieve functionality. So let’s start and create Helper method. First we’ll start with...

Monday, April 21, 2014

Remove Ambiguity of Controller Names in MVC application In this article I am sharing my thoughts on to create routing system in MVC application and terminology being used. Here we go: RouteData: This mechanism is used to examine an incoming URL and then decide which controller and action the request is need to be send. Open your visual studio, click...

Thursday, April 17, 2014

WebApi: Execution of RPCStyle action method in WebApi using MVC4 In this article I’ll share my thoughts on How to implement RPC Style action method in WebApi using MVC4. In simple words RPC style is a way to call any method via URL, whereas RPC stands for Remote procedure call. Kindly can also visit these links to know more about Configuration...