ASP.
I've got a following two controllers: [RoutePrefix("/some-resources") class CreationController : ApiController { [HttpPost, Route] public ... CreateResource(CreateData input) { // ... } } [RoutePrefix("/some-resources") class …
c# asp.net-web-api asp.net-web-api2 asp.net-web-api-routing attributeroutingI have a solution with two projects. One Web Api bootstap project and the other is a class library. The …
c# asp.net-web-api asp.net-web-api2 asp.net-web-api-routing attributeroutingI am using asp.net mvc 5 and web api 2. For the asp.net mvc 5 project I have everything working... but …
asp.net-mvc-5 asp.net-mvc-routing asp.net-web-api2 asp.net-mvc-areasI have been reading a lot about how to implement a full authentication and authorization system in Asp.Net Web …
security authentication asp.net-web-api2 thinktecture-ident-server thinktectureI have a web-app with an AngularJS front-end and a Web Api 2 back-end, and it uses bearer-tokens for authentication. All …
angularjs cors asp.net-web-api2I have create an mvc web api 2 webhook for shopify: public class ShopifyController : ApiController { // PUT: api/Afilliate/SaveOrder [ResponseType(typeof(…
asp.net-mvc-4 shopify asp.net-web-api2I am creating a Web Api (v2.0) Method that needs to take in a decimal value as its parameter. I …
c# asp.net-web-api2 asp.net-web-api-routingI am developing ASP.NET Web API using .NET Core. This Web API is going to be mainly accessed by …
asp.net-core asp.net-web-api2 content-negotiationI've started a new Web API 2.0 project in ASP.NET 5. I try to create custom RoutePrefixAttribute class but I get …
c# asp.net-web-api2 asp.net-core dnxI am working on a side project to teach myself AngularJS and Web API and how the two can work …
c# angularjs asp.net-web-api2 asp.net-mvc-5.1