Before RC1 we did something like this:
public void OnAuthorization(AuthorizationContext filterContext)
{
if (whatever)
{
filterContext.Cancel();
}
}
This is gone now, how do we achieve the same results with RC1?
Thanks,
Kyle