MvcServiceCollectionExtensions.AddControllersWithViews 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
AddControllersWithViews(IServiceCollection) |
將控制器的服務加入至指定的 IServiceCollection 。 這個方法不會註冊用於頁面的服務。 |
AddControllersWithViews(IServiceCollection, Action<MvcOptions>) |
將控制器的服務加入至指定的 IServiceCollection 。 這個方法不會註冊用於頁面的服務。 |
AddControllersWithViews(IServiceCollection)
將控制器的服務加入至指定的 IServiceCollection 。 這個方法不會註冊用於頁面的服務。
public static Microsoft.Extensions.DependencyInjection.IMvcBuilder AddControllersWithViews (this Microsoft.Extensions.DependencyInjection.IServiceCollection services);
static member AddControllersWithViews : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.Extensions.DependencyInjection.IMvcBuilder
<Extension()>
Public Function AddControllersWithViews (services As IServiceCollection) As IMvcBuilder
參數
- services
- IServiceCollection
要新增服務的 IServiceCollection。
傳回
IMvcBuilder,可用來進一步設定 MVC 服務。
備註
這個方法會針對具有檢視之控制器常用的功能設定 MVC 服務。 這會結合 、 AddApiExplorer(IMvcCoreBuilder) 、、 AddAuthorization(IMvcCoreBuilder) 、 AddDataAnnotations(IMvcCoreBuilder)AddCors(IMvcCoreBuilder) 、 AddFormatterMappings(IMvcCoreBuilder) 、 AddCacheTagHelper(IMvcCoreBuilder) 、 AddViews(IMvcCoreBuilder) 和 AddRazorViewEngine(IMvcCoreBuilder) 的效果 AddMvcCore(IServiceCollection) 。
若要新增頁面的服務,請呼叫 AddRazorPages(IServiceCollection) 。
適用於
AddControllersWithViews(IServiceCollection, Action<MvcOptions>)
將控制器的服務加入至指定的 IServiceCollection 。 這個方法不會註冊用於頁面的服務。
public static Microsoft.Extensions.DependencyInjection.IMvcBuilder AddControllersWithViews (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Microsoft.AspNetCore.Mvc.MvcOptions> configure);
public static Microsoft.Extensions.DependencyInjection.IMvcBuilder AddControllersWithViews (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Action<Microsoft.AspNetCore.Mvc.MvcOptions>? configure);
static member AddControllersWithViews : Microsoft.Extensions.DependencyInjection.IServiceCollection * Action<Microsoft.AspNetCore.Mvc.MvcOptions> -> Microsoft.Extensions.DependencyInjection.IMvcBuilder
<Extension()>
Public Function AddControllersWithViews (services As IServiceCollection, configure As Action(Of MvcOptions)) As IMvcBuilder
參數
- services
- IServiceCollection
要新增服務的 IServiceCollection。
- configure
- Action<MvcOptions>
用於設定所提供 MvcOptions 的 Action<T>。
傳回
IMvcBuilder,可用來進一步設定 MVC 服務。
備註
這個方法會針對具有檢視之控制器常用的功能設定 MVC 服務。 這會結合 、 AddApiExplorer(IMvcCoreBuilder) 、、 AddAuthorization(IMvcCoreBuilder) 、 AddDataAnnotations(IMvcCoreBuilder)AddCors(IMvcCoreBuilder) 、 AddFormatterMappings(IMvcCoreBuilder) 、 AddCacheTagHelper(IMvcCoreBuilder) 、 AddViews(IMvcCoreBuilder) 和 AddRazorViewEngine(IMvcCoreBuilder) 的效果 AddMvcCore(IServiceCollection) 。
若要新增頁面的服務,請呼叫 AddRazorPages(IServiceCollection) 。