IControllerFactoryProvider.CreateControllerFactory Method
Definition
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.
Creates a factory for producing controllers for the specified descriptor
.
public:
Func<Microsoft::AspNetCore::Mvc::ControllerContext ^, System::Object ^> ^ CreateControllerFactory(Microsoft::AspNetCore::Mvc::Controllers::ControllerActionDescriptor ^ descriptor);
public Func<Microsoft.AspNetCore.Mvc.ControllerContext,object> CreateControllerFactory (Microsoft.AspNetCore.Mvc.Controllers.ControllerActionDescriptor descriptor);
abstract member CreateControllerFactory : Microsoft.AspNetCore.Mvc.Controllers.ControllerActionDescriptor -> Func<Microsoft.AspNetCore.Mvc.ControllerContext, obj>
Public Function CreateControllerFactory (descriptor As ControllerActionDescriptor) As Func(Of ControllerContext, Object)
Parameters
- descriptor
- ControllerActionDescriptor
Returns
The controller factory.