Show / Hide Table of Contents

Class AbpAspNetCoreApplicationBuilderExtensions

Inheritance
System.Object
AbpAspNetCoreApplicationBuilderExtensions
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Microsoft.AspNetCore.Builder
Assembly: Volo.Abp.AspNetCore.dll
Syntax
public static class AbpAspNetCoreApplicationBuilderExtensions

Methods

UseConfiguredEndpoints(IApplicationBuilder, Action<IEndpointRouteBuilder>)

Maps endpoints configured with the AbpEndpointRouterOptions. It internally uses the standard app.UseEndpoints(...) method.

Declaration
public static IApplicationBuilder UseConfiguredEndpoints(this IApplicationBuilder app, Action<IEndpointRouteBuilder> additionalConfigurationAction = null)
Parameters
Type Name Description
IApplicationBuilder app

The application builder

System.Action<IEndpointRouteBuilder> additionalConfigurationAction

Additional (and optional) endpoint configuration

Returns
Type Description
IApplicationBuilder
Back to top Powered by Volosoft