I have the following EnableCors attribute on a WebApi controller class:
[EnableCors(origins:"http://localhost:57280", headers: "*", methods: "*")]
public class PhysicalActivityController : ApiController
But I don't want that url hard-coded. I want to fetch it from web.config.
Something like this:
[EnableCors(origins: System.Web.Configuration.WebConfigurationManager.AppSettings["ModellingApiUrl"], headers: "*", methods: "*")]
public class PhysicalActivityController2 : ApiController
The problem is that I can't access methods like that from within an attribute. The context of the code is not the same as being within an ordinary method. When I write the code as in the second example, Visual Studio highlights "AppSettings" in red, and gives the error "Cannot resolve symbol 'AppSettings'".
Any ideas on how I can achieve this? I tried writing a custom attribute that inherits from EnableCors, but sadly System.Web.Http.Cors.EnableCorsAttribute is a sealed class, so I can't inherit from it.
use this code i hope this is useful to you