Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

MvcCoreServiceCollectionExtensions.AddMvcCore Method

Definition

Namespace:
Microsoft.Extensions.DependencyInjection
Assembly:
Microsoft.AspNetCore.Mvc.Core.dll
Package:
Microsoft.AspNetCore.Mvc.Core v1.0.0
Package:
Microsoft.AspNetCore.Mvc.Core v1.1.0
Package:
Microsoft.AspNetCore.App.Ref v10.0.0
Package:
Microsoft.AspNetCore.App.Ref v11.0.0-preview.4.26230.115
Package:
Microsoft.AspNetCore.Mvc.Core v2.0.0
Package:
Microsoft.AspNetCore.Mvc.Core v2.1.0
Package:
Microsoft.AspNetCore.Mvc.Core v2.2.0
Package:
Microsoft.AspNetCore.App.Ref v3.0.1
Package:
Microsoft.AspNetCore.App.Ref v3.1.10
Package:
Microsoft.AspNetCore.App.Ref v5.0.0
Package:
Microsoft.AspNetCore.App.Ref v6.0.36
Package:
Microsoft.AspNetCore.App.Ref v7.0.5
Package:
Microsoft.AspNetCore.App.Ref v8.0.19
Package:
Microsoft.AspNetCore.App.Ref v9.0.8

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Overloads

Name Description
AddMvcCore(IServiceCollection)

Adds the minimum essential MVC services to the specified IServiceCollection. Additional services including MVC's support for authorization, formatters, and validation must be added separately using the IMvcCoreBuilder returned from this method.

AddMvcCore(IServiceCollection, Action<MvcOptions>)

Adds the minimum essential MVC services to the specified IServiceCollection. Additional services including MVC's support for authorization, formatters, and validation must be added separately using the IMvcCoreBuilder returned from this method.

AddMvcCore(IServiceCollection)

Source:
MvcCoreServiceCollectionExtensions.cs
Source:
MvcCoreServiceCollectionExtensions.cs
Source:
MvcCoreServiceCollectionExtensions.cs

Adds the minimum essential MVC services to the specified IServiceCollection. Additional services including MVC's support for authorization, formatters, and validation must be added separately using the IMvcCoreBuilder returned from this method.

public static Microsoft.Extensions.DependencyInjection.IMvcCoreBuilder AddMvcCore(this Microsoft.Extensions.DependencyInjection.IServiceCollection services);
static member AddMvcCore : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.Extensions.DependencyInjection.IMvcCoreBuilder
<Extension()>
Public Function AddMvcCore (services As IServiceCollection) As IMvcCoreBuilder

Parameters

services
IServiceCollection

The IServiceCollection to add services to.

Returns

An IMvcCoreBuilder that can be used to further configure the MVC services.

Remarks

The AddMvcCore(IServiceCollection) approach for configuring MVC is provided for experienced MVC developers who wish to have full control over the set of default services registered. AddMvcCore(IServiceCollection) will register the minimum set of services necessary to route requests and invoke controllers. It is not expected that any application will satisfy its requirements with just a call to AddMvcCore(IServiceCollection). Additional configuration using the IMvcCoreBuilder will be required.

Applies to

AddMvcCore(IServiceCollection, Action<MvcOptions>)

Source:
MvcCoreServiceCollectionExtensions.cs
Source:
MvcCoreServiceCollectionExtensions.cs
Source:
MvcCoreServiceCollectionExtensions.cs

Adds the minimum essential MVC services to the specified IServiceCollection. Additional services including MVC's support for authorization, formatters, and validation must be added separately using the IMvcCoreBuilder returned from this method.

public static Microsoft.Extensions.DependencyInjection.IMvcCoreBuilder AddMvcCore(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Microsoft.AspNetCore.Mvc.MvcOptions> setupAction);
static member AddMvcCore : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Microsoft.AspNetCore.Mvc.MvcOptions> -> Microsoft.Extensions.DependencyInjection.IMvcCoreBuilder
<Extension()>
Public Function AddMvcCore (services As IServiceCollection, setupAction As Action(Of MvcOptions)) As IMvcCoreBuilder

Parameters

services
IServiceCollection

The IServiceCollection to add services to.

setupAction
Action<MvcOptions>

An Action<T> to configure the provided MvcOptions.

Returns

An IMvcCoreBuilder that can be used to further configure the MVC services.

Remarks

The AddMvcCore(IServiceCollection) approach for configuring MVC is provided for experienced MVC developers who wish to have full control over the set of default services registered. AddMvcCore(IServiceCollection) will register the minimum set of services necessary to route requests and invoke controllers. It is not expected that any application will satisfy its requirements with just a call to AddMvcCore(IServiceCollection). Additional configuration using the IMvcCoreBuilder will be required.

Applies to


Feedback

Was this page helpful?