Abhijeet Patel
Abhijeet Patel
Hi Tom, This is a coincidence. I was just searching of these very attributes in the AttributeRouting codebase today and stumbled upon this post. Do you have a ballpark ETA...
That was preceisley what I was trying to do but the HttpMethod does not seem to have a the "Patch" verb property on it. Am I missing something?
My reference is coming from the following location. Look right? System.Net.Http.dll, v4.0.0.0 C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.NETFramework\v4.5\System.Net.Http.dll
For now I ended up defining my own PATCH attribute like so: public class PATCHAttribute : HttpRouteAttribute { /// /// Specify a route for a GET request. /// /// The...
Hi Tim, I am using AR and I love it so far for ApiControllers. I am supporting a limited set of Odata operators by having my Get methods accept ODataQueryOptions....
Figured it out: response.Headers.Location = new Uri(Url.Link("PostProduct", new { id = item.ID })); But,if I remove the following "DefaultApi" route from RouteConfig.cs: routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}", defaults: new {...
I was using 3.4.1 and then upgraded to the latest version(3.5.6) from nuget but no change in behavior
Thanks Tim WebAPI Version:4.0.20710.0 Not sure if this is relevant or not but I noticed that I have 2 packages in packages.config <package id="AspNetWebApi" version="4.0.20710.0" targetFramework="net45" /> AND <package id="Microsoft.AspNet.WebApi"...
Did you have to write any custom scripts for the appveryor build or was it plug and play ?
So is appveyor just doing a normal vanilla build on the codebase? Ultimately are you looking to port the build script you have here to FAKE?