0

您好我有BaseController : ApiController如何使用GetApiExplorer獲得控制器名稱和數據提供一個定製的控制器()

而且TestController : BaseController

如何獲得控制器名稱&和相關細節的TestController

使用波紋管代碼

GlobalConfiguration.Configuration.Services.GetApiExplorer().ApiDescriptions 
    .GroupBy(x => x.ActionDescriptor.ControllerDescriptor.ControllerName) 
    .Select(x => x.First().ActionDescriptor.ControllerDescriptor.ControllerName) 

我能抽到細節(ApiDescriptions)的BaseController

如何獲得的細節(ApiDescriptions)的TestController

+0

你指的是什麼「細節」? –

+0

@von v:'ApiDescriptions' –

回答

0

我的錯誤

現在我的評論從TestController婁代碼。現在一切都很完美

[ApiExplorerSettings(IgnoreApi = true)] 
相關問題