當前位置: 首頁>>代碼示例>>C#>>正文


C# ActionDescriptor.IsDefined方法代碼示例

本文整理匯總了C#中System.Web.Mvc.ActionDescriptor.IsDefined方法的典型用法代碼示例。如果您正苦於以下問題:C# ActionDescriptor.IsDefined方法的具體用法?C# ActionDescriptor.IsDefined怎麽用?C# ActionDescriptor.IsDefined使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Web.Mvc.ActionDescriptor的用法示例。


在下文中一共展示了ActionDescriptor.IsDefined方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Redirect

 /// <summary>
 /// 重定向方法 有兩種情況:如果是Ajax請求,則返回 Json字符串;如果是普通請求,則 返回重定向命令
 /// </summary>
 /// <param name="IsNoLogin">判斷是未登錄還是沒有權限</param>
 /// <param name="url"></param>
 /// <param name="action"></param>
 /// <returns></returns>
 public ActionResult Redirect(bool IsLogin, ActionDescriptor action)
 {
     //如果Ajax請求沒有權限,就返回 Json消息
     if (action.IsDefined(typeof(AjaxRequestAttribute), false)
     || action.ControllerDescriptor.IsDefined(typeof(AjaxRequestAttribute), false))
     {
         if (IsLogin)
         {
             return RedirectAjax("nologin", null, null, "/Login/Login/Index");
         }
         else
         {
             Uri MyUrl = Request.UrlReferrer;
             string url = MyUrl.ToString();
             return RedirectAjax("nopermission", "您沒有權限訪問此頁麵", null, url);
         }
     }
     else//如果 超鏈接或表單 沒有權限訪問,js代碼
     {
         if (IsLogin)
         {
             ContentResult result = new ContentResult();
             //跳回登陸頁麵
             result.Content = "<script type='text/javascript'>alert('您還沒有登陸呦!');parent.location='" +"/Login/Login/Index"+ "'</script>"; ;
             return result;
         }
         else
         {
             //返回上一級URL
             Uri MyUrl = Request.UrlReferrer;
             string url = MyUrl.ToString();
             ContentResult result = new ContentResult();
             result.Content = "<script type='text/javascript'>alert('您沒有權限訪問此頁麵!');window.location='" + url + "'</script>";
             return result;
         }
     }
 }
開發者ID:fangyz,項目名稱:FinalabBMS,代碼行數:44,代碼來源:OperateContext.cs

示例2: Redirect

 /// <summary>
 /// 重定向方法 有兩種情況:如果是Ajax請求,則返回 Json字符串;如果是普通請求,則 返回重定向命令
 /// </summary>
 /// <returns></returns>
 public ActionResult Redirect(string url, ActionDescriptor action)
 {
     //如果Ajax請求沒有權限,就返回 Json消息
     if (action.IsDefined(typeof(AjaxRequestAttribute), false)
     || action.ControllerDescriptor.IsDefined(typeof(AjaxRequestAttribute), false))
     {
         return RedirectAjax("nologin", "您沒有登陸或沒有權限訪問此頁麵~~", null, url);
     }
     else//如果 超鏈接或表單 沒有權限訪問,則返回 302重定向命令
     {
         return new RedirectResult(url);
     }
 }
開發者ID:wanghaoguan,項目名稱:Final-Web,代碼行數:17,代碼來源:OperateContext.cs

示例3: HasAllowAnonymousAttribute

 private bool HasAllowAnonymousAttribute(ActionDescriptor actionDescriptor)
 {
     var allowAnonymousType = typeof(AllowAnonymousAttribute);
     return (actionDescriptor.IsDefined(allowAnonymousType, true) ||
         actionDescriptor.ControllerDescriptor.IsDefined(allowAnonymousType, true));
 }
開發者ID:blerimj,項目名稱:ScaffR-Generated,代碼行數:6,代碼來源:ClaimsAuthorizeModule.cs


注:本文中的System.Web.Mvc.ActionDescriptor.IsDefined方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。