加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > asp.Net > 正文

asp.net-mvc – ActionResult上的自定义属性

发布时间:2020-12-15 20:21:48 所属栏目:asp.Net 来源:网络整理
导读:这可能是菜鸟的问题,但是 假设我有一个ActionResult,我只想在几个小时后授予访问权限. 我们还说我想用自定义属性来装饰我的ActionResult. 所以代码可能看起来像 [AllowAccess(after="17:00:00",before="08:00:00")]public ActionResult AfterHoursPage(){ //
这可能是菜鸟的问题,但是

假设我有一个ActionResult,我只想在几个小时后授予访问权限.

我们还说我想用自定义属性来装饰我的ActionResult.

所以代码可能看起来像

[AllowAccess(after="17:00:00",before="08:00:00")]
public ActionResult AfterHoursPage()
{
    //Do something not so interesting here;

    return View();
}

我该如何才能得到这个工作?

我已经做了一些关于创建自定义属性的研究,但是我觉得我错过了如何消耗它们.

请假设我知道几乎没有关于创建和使用它们.

解决方法

尝试这个(未经测试):
public class AllowAccessAttribute : AuthorizeAttribute
{
    public DateTime before;
    public DateTime after;

    protected override bool AuthorizeCore(HttpContextBase httpContext)
    {
        if (httpContext == null)
            throw new ArgumentNullException("httpContext");

        DateTime current = DateTime.Now;

        if (current < before | current > after)
            return false;

        return true;
    }
}

更多信息:
http://schotime.net/blog/index.php/2009/02/17/custom-authorization-with-aspnet-mvc/

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读