DependencyResolverExtensions.GetHttpControllerFactory Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Retrieves the controller factory, which instantiates a string name into an IHttpController.

Namespace:  System.Web.Http
Assembly:  System.Web.Http (in System.Web.Http.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function GetHttpControllerFactory ( _
    resolver As DependencyResolver _
) As IHttpControllerFactory
public static IHttpControllerFactory GetHttpControllerFactory(
    this DependencyResolver resolver
)
[ExtensionAttribute]
public:
static IHttpControllerFactory^ GetHttpControllerFactory(
    DependencyResolver^ resolver
)
static member GetHttpControllerFactory : 
        resolver:DependencyResolver -> IHttpControllerFactory 
public static function GetHttpControllerFactory(
    resolver : DependencyResolver
) : IHttpControllerFactory

Parameters

Return Value

Type: System.Web.Http.Dispatcher.IHttpControllerFactory
The controller factory.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DependencyResolver. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

You can retrieve the controller factory by first getting the Type from the controller name, and then using a IHttpControllerActivator.

See Also

Reference

DependencyResolverExtensions Class

System.Web.Http Namespace