本文整理匯總了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;
}
}
}
示例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);
}
}
示例3: HasAllowAnonymousAttribute
private bool HasAllowAnonymousAttribute(ActionDescriptor actionDescriptor)
{
var allowAnonymousType = typeof(AllowAnonymousAttribute);
return (actionDescriptor.IsDefined(allowAnonymousType, true) ||
actionDescriptor.ControllerDescriptor.IsDefined(allowAnonymousType, true));
}