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


C# Route.SetRouteName方法代码示例

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


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

示例1: MapRoute

        /// <summary>
        /// This was copied from System.Web.Mvc.RouteCollectionExtensions and
        /// modified slightly.  The original function declares the defaults
        /// and constraints parameters as object type, which causes the wrong
        /// overload of RouteValueDictionary to be invoked, causing values in
        /// the dictionaries not to be set properly.  The modified version
        /// declares these parameters as Dictionary&lt;string, object&gt;,
        /// fixing the problem.
        /// </summary>
        /// <param name="routes"></param>
        /// <param name="name"></param>
        /// <param name="url"></param>
        /// <param name="defaults"></param>
        /// <param name="constraints"></param>
        /// <param name="namespaces"></param>
        /// <returns></returns>
        private static Route MapRoute(RouteCollection routes, string name, string url, Dictionary<string, object> defaults, Dictionary<string, object> constraints, string[] namespaces)
        {
            if (routes == null)
            {
                throw new ArgumentNullException("routes");
            }
            if (url == null)
            {
                throw new ArgumentNullException("url");
            }
            if (constraints == null)
            {
                throw new ArgumentNullException("constraints");
            }

            Route route = new Route(url, new MvcRouteHandler())
            {
                Defaults = new RouteValueDictionary(defaults),
                Constraints = new RouteValueDictionary(constraints)
            };

            route.DataTokens = new RouteValueDictionary();

            if (!String.IsNullOrEmpty(name))
            {
                route.SetRouteName(name);
            }

            if ((namespaces != null) && (namespaces.Length > 0))
            {
                route.DataTokens["Namespaces"] = namespaces;
            }

            routes.Add(name, route);

            return route;
        }
开发者ID:tbrito,项目名称:salus,代码行数:53,代码来源:RouteCollectionExtensions.cs


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