Saturday, 27 August 2016

Getting Started with ASP.NET Web API 2 (C#) Part 4

Returning IHttpActionResult We mentioned above that the HttpResponseMessage object is a standard object to return from Web API actions. Web Api 2 introduces another type of object that you can return from an API action: IHttpActionResult. It is similar to ActionResult in standard ASP.NET MVC. In...

Tuesday, 23 August 2016

Getting Started with ASP.NET Web API 2 (C#) Part 3

Routing by attributes Today we will see new built-in feature in asp.net web api 2 which lets you declare the routing rules by standard C# attributes. It started its life as a NuGet package but now it’s readily available in .NET. The attributes can be applied on the controller level as well. Examples: You...

Monday, 22 August 2016

Getting Started with ASP.NET Web API 2 (C#) Part 2

We finished the first part of this series with creating an in-memory data source and a Get() API method.  The Get method returned the full list of ProductList records in the data repository. We are ready to move on to other aspects of this technology. So open the demo project we started...

Saturday, 20 August 2016

Getting Started with ASP.NET Web API 2 (C#) Part 1

- ASP.NET Web API is a framework for building HTTP services(web APIs on top of the .NET Framework. ) that can be consumed by a broad range of clients including browsers, mobiles, iphone and tablets.  - ASP.NET Web API has been around for some years now. It is a very efficient...

Wednesday, 20 July 2016

The User Profile Service failed the logon” error message. How to Solve ?

The User Profile Service failed the logon” error message To solve this Problem First you have to Start your computer in safe mode. Step 1: For That you should restart your computer and tap F8 after the BIOS POST screen to bring up the boot menu. Select Safe mode from the list. Step...