ASP.
I have a class that name is Advertisement: public class Advertisement { public string Title { get; set; } public string Desc { get; …
c# asp.net asp.net-web-api2 asp.net-identityThe URL I'm trying to let work is one in the style of: http://somedomain.com/api/people/staff.33311 (just …
c# asp.net-mvc-4 asp.net-web-api asp.net-mvc-routing asp.net-web-api2I have created a WebApi and a Cordova application. I am using HTTP requests to communicate between the Cordova application …
c# authentication owin asp.net-web-api2 bearer-tokenI upgraded Microsoft.AspNetCore from 2.0.3 to 2.0.5 and my WebAPI project, although running successfully locally, fails to start in production (IIS). …
asp.net-core .net-core asp.net-web-api2 upgrade nuget-packageHow can I generate the same url but in Web Api ? var url = Url.Action("Action", "Controller", new { product = product.…
c# asp.net-mvc-5 asp.net-web-api2I understand that RoutePrefix doesn't add a route to the routing table by itself. On your actions you need to …
c# asp.net-web-api asp.net-web-api2 asp.net-web-api-routing attributeroutingI want to deserialize JToken content to an object (User). How am I able to do this? Here is my …
c# json salesforce json.net asp.net-web-api2I have the following controller: public class ValuesController : ApiController { // POST api/values public IHttpActionResult Post(string filterName) { return new JsonResult&…
javascript c# asp.net-web-api asp.net-web-api2Scenario I have an ASP.NET Web API that uses the OAuth Password Flow to provide Bearer Tokens to gain …
c# security session asp.net-mvc-5 asp.net-web-api2In ASP.NET MVC WebAPI project by default we have created following controller public class ValuesController : ApiController { // GET api/values …
c# asp.net-mvc asp.net-web-api2