I have done quite a bit of research and have tested both the 1.4 and 2.0 versions of the FluentSecurity libraries and I don\'t seem to be able to use the configuration patte
I was asking the same question. Currently, you can pass in default values for the parameters.
configuration .For(x => x.Index(default(string))) .DenyAnonymousAccess();
where HomeController is:
HomeController
public ActionResult Index(string id) { return View(); }