当前位置: 首页>>代码示例>>C#>>正文


C# UrlHelper.IsLocalUrl方法代码示例

本文整理汇总了C#中System.Web.Mvc.UrlHelper.IsLocalUrl方法的典型用法代码示例。如果您正苦于以下问题:C# UrlHelper.IsLocalUrl方法的具体用法?C# UrlHelper.IsLocalUrl怎么用?C# UrlHelper.IsLocalUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Web.Mvc.UrlHelper的用法示例。


在下文中一共展示了UrlHelper.IsLocalUrl方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Process

        public ActionResult Process(HttpContextBase context, AuthenticateCallbackData model)
        {
            if (model.Exception != null)
                throw model.Exception;

            var client = model.AuthenticatedClient;
            var username = client.UserInformation.UserName;

            FormsAuthentication.SetAuthCookie(username, false);

            context.Response.AppendCookie(new HttpCookie("AccessToken", client.AccessToken.SecretToken)
            {
                Secure = !context.IsDebuggingEnabled,
                HttpOnly = true
            });

            var urlHelper = new UrlHelper(((MvcHandler)context.Handler).RequestContext);
            var redirectUrl = string.Format("/{0}/", username);
            var cookie = context.Request.Cookies["returnUrl"];
            if (cookie != null && urlHelper.IsLocalUrl(cookie.Value))
            {
                redirectUrl = cookie.Value;
                cookie.Expires = DateTime.Now.AddDays(-1);
                context.Response.Cookies.Add(cookie);
            }

            return new RedirectResult(redirectUrl);
        }
开发者ID:nikmd23,项目名称:signatory,代码行数:28,代码来源:AuthenticationCallbackController.cs

示例2: SafeRedirectUrl

        public static string SafeRedirectUrl(UrlHelper url, string returnUrl)
        {
            if (!String.IsNullOrWhiteSpace(returnUrl)
                && url.IsLocalUrl(returnUrl)
                && returnUrl.Length > 1
                && returnUrl.StartsWith("/", StringComparison.Ordinal)
                && !returnUrl.StartsWith("//", StringComparison.Ordinal)
                && !returnUrl.StartsWith("/\\", StringComparison.Ordinal))
            {
                return returnUrl;
            }

            return url.Home();
        }
开发者ID:kl4w,项目名称:NuGetGallery,代码行数:14,代码来源:RedirectHelper.cs

示例3: redirect

        ///////////////////////////////////////////////////////////////////////
        public static void redirect(HttpRequest Request, HttpResponse Response)
        {
            // redirect to the page the user was going to or start off with bugs.aspx
            string url = Request.QueryString["url"];
            string qs = Request.QueryString["qs"];

            UrlHelper urlHelper = new UrlHelper(Request.RequestContext);
            if (String.IsNullOrEmpty(url) || !urlHelper.IsLocalUrl(url))
            {
                string mobile = Request["mobile"];
                if (String.IsNullOrEmpty(mobile))
                {
                    Response.Redirect("bugs.aspx");
                }
                else {
                    Response.Redirect("mbugs.aspx");
                }
            }
            else
            {
                Response.Redirect(remove_line_breaks(url) + "?" + remove_line_breaks(HttpUtility.UrlDecode(qs)));
            }
        }
开发者ID:jhadwen,项目名称:BugTracker.NET,代码行数:24,代码来源:util.cs

示例4: IsSafe

 public bool IsSafe(string url)
 {
     UrlHelper helper = new UrlHelper(context);
     return helper.IsLocalUrl(url) && url.Length > 1 && url.StartsWith("/") && !url.StartsWith("//") && !url.StartsWith("/\\");
 }
开发者ID:luiseduardohdbackup,项目名称:TestMvcApplication,代码行数:5,代码来源:ContextManager.cs


注:本文中的System.Web.Mvc.UrlHelper.IsLocalUrl方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。