I have CORS setup with System.Web.Http.Cors (Nightly builds). Everything is working fine, until if I want to disable a CORS support for a method then iam not able to do so. A POST method of mine having [DisableCors] attribute above it is hit by debugger and data in posted in database. But the only good point in that is, the response ends with error (shown in firebug).
I dont want the method to save data when the request is from cross origin. It should filter it out from methods top only (like Authorize attribute in MVC).
Your help would be good support factor.
Thanks.