IControllerConfiguration Interface
If a controller is decorated with an attribute with this interface, then it gets invoked to initialize the controller settings.
Namespace: System.Web.Http.Controllers
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
Public Interface IControllerConfiguration
'Usage
Dim instance As IControllerConfiguration
public interface IControllerConfiguration
public interface class IControllerConfiguration
type IControllerConfiguration = interface end
public interface IControllerConfiguration
The IControllerConfiguration type exposes the following members.
Methods
Name | Description | |
---|---|---|
Initialize | Callback invoked to set per-controller overrides for this controllerDescriptor. |
Top