ServicesExtensions.GetHttpControllerActivator Method
Gets the IHttpControllerActivator service.
Namespace: System.Web.Http
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetHttpControllerActivator ( _
services As ServicesContainer _
) As IHttpControllerActivator
'Usage
Dim services As ServicesContainer
Dim returnValue As IHttpControllerActivator
returnValue = services.GetHttpControllerActivator()
public static IHttpControllerActivator GetHttpControllerActivator(
this ServicesContainer services
)
[ExtensionAttribute]
public:
static IHttpControllerActivator^ GetHttpControllerActivator(
ServicesContainer^ services
)
static member GetHttpControllerActivator :
services:ServicesContainer -> IHttpControllerActivator
public static function GetHttpControllerActivator(
services : ServicesContainer
) : IHttpControllerActivator
Parameters
services
Type: System.Web.Http.Controllers.ServicesContainerThe services container.
Return Value
Type: System.Web.Http.Dispatcher.IHttpControllerActivator
Returns an IHttpControllerActivatorinstance, or null if no instance was registered.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type ServicesContainer. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).
Remarks
The IHttpControllerActivator interface is used to create an IHttpController instance.