Ejemplo n.º 1
0
        public static IApplicationBuilder UseMvcWithEndpoint(
            this IApplicationBuilder app,
            Action <MvcEndpointInfoBuilder> configureRoutes)
        {
            if (app == null)
            {
                throw new ArgumentNullException(nameof(app));
            }

            if (configureRoutes == null)
            {
                throw new ArgumentNullException(nameof(configureRoutes));
            }

            VerifyMvcIsRegistered(app);

            var mvcEndpointDataSource = app.ApplicationServices
                                        .GetRequiredService <IEnumerable <EndpointDataSource> >()
                                        .OfType <MvcEndpointDataSource>()
                                        .First();

            var constraintResolver = app.ApplicationServices.GetRequiredService <IInlineConstraintResolver>();

            MvcEndpointInfoBuilder routeBuilder = new MvcEndpointInfoBuilder(constraintResolver);

            configureRoutes(routeBuilder);

            mvcEndpointDataSource.ConventionalEndpointInfos.AddRange(routeBuilder.EndpointInfos);
            mvcEndpointDataSource.InitializeEndpoints();

            return(app.UseEndpoint());
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Adds a endpoint to the <see cref="MvcEndpointInfoBuilder"/> with the given MVC area with the specified
        /// <paramref name="name"/>, <paramref name="areaName"/>, <paramref name="template"/>,
        /// <paramref name="defaults"/>, <paramref name="constraints"/>, and <paramref name="dataTokens"/>.
        /// </summary>
        /// <param name="endpointBuilder">The <see cref="MvcEndpointInfoBuilder"/> to add the endpoint to.</param>
        /// <param name="name">The name of the endpoint.</param>
        /// <param name="areaName">The MVC area name.</param>
        /// <param name="template">The URL pattern of the endpoint.</param>
        /// <param name="defaults">
        /// An object that contains default values for endpoint parameters. The object's properties represent the
        /// names and values of the default values.
        /// </param>
        /// <param name="constraints">
        /// An object that contains constraints for the endpoint. The object's properties represent the names and
        /// values of the constraints.
        /// </param>
        /// <param name="dataTokens">
        /// An object that contains data tokens for the endpoint. The object's properties represent the names and
        /// values of the data tokens.
        /// </param>
        /// <returns>A reference to this instance after the operation has completed.</returns>
        public static MvcEndpointInfoBuilder MapAreaEndpoint(
            this MvcEndpointInfoBuilder endpointBuilder,
            string name,
            string areaName,
            string template,
            object defaults,
            object constraints,
            object dataTokens)
        {
            if (endpointBuilder == null)
            {
                throw new ArgumentNullException(nameof(endpointBuilder));
            }

            if (string.IsNullOrEmpty(areaName))
            {
                throw new ArgumentException(Resources.ArgumentCannotBeNullOrEmpty, nameof(areaName));
            }

            var defaultsDictionary = new RouteValueDictionary(defaults);

            defaultsDictionary["area"] = defaultsDictionary["area"] ?? areaName;

            var constraintsDictionary = new RouteValueDictionary(constraints);

            constraintsDictionary["area"] = constraintsDictionary["area"] ?? new StringRouteConstraint(areaName);

            endpointBuilder.MapEndpoint(name, template, defaultsDictionary, constraintsDictionary, dataTokens);
            return(endpointBuilder);
        }
Ejemplo n.º 3
0
 /// <summary>
 /// Adds a endpoint to the <see cref="MvcEndpointInfoBuilder"/> with the given MVC area with the specified
 /// <paramref name="name"/>, <paramref name="areaName"/> and <paramref name="template"/>.
 /// </summary>
 /// <param name="endpointBuilder">The <see cref="MvcEndpointInfoBuilder"/> to add the endpoint to.</param>
 /// <param name="name">The name of the endpoint.</param>
 /// <param name="areaName">The MVC area name.</param>
 /// <param name="template">The URL pattern of the endpoint.</param>
 /// <returns>A reference to this instance after the operation has completed.</returns>
 public static MvcEndpointInfoBuilder MapAreaEndpoint(
     this MvcEndpointInfoBuilder endpointBuilder,
     string name,
     string areaName,
     string template)
 {
     MapAreaEndpoint(endpointBuilder, name, areaName, template, defaults: null, constraints: null, dataTokens: null);
     return(endpointBuilder);
 }
Ejemplo n.º 4
0
        /// <summary>
        /// Adds a endpoint to the <see cref="MvcEndpointInfoBuilder" /> with the specified name, template, default values, and
        /// data tokens.
        /// </summary>
        /// <param name="endpointBuilder">The <see cref="MvcEndpointInfoBuilder" /> to add the endpoint to.</param>
        /// <param name="name">The name of the endpoint.</param>
        /// <param name="template">The URL pattern of the endpoint.</param>
        /// <param name="defaults">
        /// An object that contains default values for endpoint parameters. The object's properties represent the names
        /// and values of the default values.
        /// </param>
        /// <param name="constraints">
        /// An object that contains constraints for the endpoint. The object's properties represent the names and values
        /// of the constraints.
        /// </param>
        /// <param name="dataTokens">
        /// An object that contains data tokens for the endpoint. The object's properties represent the names and values
        /// of the data tokens.
        /// </param>
        /// <returns>A reference to this instance after the operation has completed.</returns>
        public static MvcEndpointInfoBuilder MapEndpoint(this MvcEndpointInfoBuilder endpointBuilder, string name, string template, object defaults, object constraints, object dataTokens)
        {
            endpointBuilder.EndpointInfos.Add(new MvcEndpointInfo(
                                                  name,
                                                  template,
                                                  new RouteValueDictionary(defaults),
                                                  new RouteValueDictionary(constraints),
                                                  new RouteValueDictionary(dataTokens),
                                                  endpointBuilder.ConstraintResolver));

            return(endpointBuilder);
        }
Ejemplo n.º 5
0
 /// <summary>
 /// Adds a endpoint to the <see cref="MvcEndpointInfoBuilder" /> with the specified name, template, default values, and
 /// constraints.
 /// </summary>
 /// <param name="endpointBuilder">The <see cref="MvcEndpointInfoBuilder" /> to add the endpoint to.</param>
 /// <param name="name">The name of the endpoint.</param>
 /// <param name="template">The URL pattern of the endpoint.</param>
 /// <param name="defaults">
 /// An object that contains default values for endpoint parameters. The object's properties represent the names
 /// and values of the default values.
 /// </param>
 /// <param name="constraints">
 /// An object that contains constraints for the endpoint. The object's properties represent the names and values
 /// of the constraints.
 /// </param>
 /// <returns>A reference to this instance after the operation has completed.</returns>
 public static MvcEndpointInfoBuilder MapEndpoint(this MvcEndpointInfoBuilder endpointBuilder, string name, string template, object defaults, object constraints)
 {
     return(endpointBuilder.MapEndpoint(name, template, defaults, constraints, null));
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Adds a endpoint to the <see cref="MvcEndpointInfoBuilder" /> with the specified name and template.
 /// </summary>
 /// <param name="endpointBuilder">The <see cref="MvcEndpointInfoBuilder" /> to add the endpoint to.</param>
 /// <param name="name">The name of the endpoint.</param>
 /// <param name="template">The URL pattern of the endpoint.</param>
 /// <returns>A reference to this instance after the operation has completed.</returns>
 public static MvcEndpointInfoBuilder MapEndpoint(this MvcEndpointInfoBuilder endpointBuilder, string name, string template)
 {
     endpointBuilder.MapEndpoint(name, template, null);
     return(endpointBuilder);
 }