Can the HttpContext
be accessed within a ValidationAttribute
in ASP.NET MVC 3?
I need to test for something in my route data for a match in order to return true on my validator.
Thanks
Yes, you can access the static HttpContext.Current property to get the current http context.
This property may return null depending on what thread you are running your validation on, or in a non http request such as in a unit test.
You will most likely want to abstract away the call you make to .Current in order to create more testable code. To do this, have your abstracted member return an HttpContextBase, like this:
return new HttpContextWrapper(HttpContext.Current);
This abstraction will allow you to pass in mock http context base instances for easier testing.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With