Gets the IHttpActionInvoker service.
Namespace:  System.Web.Http
Assembly:  System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetActionInvoker ( _
    services As ServicesContainer _
) As IHttpActionInvoker
'Usage
Dim services As ServicesContainer 
Dim returnValue As IHttpActionInvoker 
returnValue = services.GetActionInvoker()
public static IHttpActionInvoker GetActionInvoker(
    this ServicesContainer services
)
[ExtensionAttribute]
public:
static IHttpActionInvoker^ GetActionInvoker(
    ServicesContainer^ services
)
static member GetActionInvoker : 
        services:ServicesContainer -> IHttpActionInvoker
public static function GetActionInvoker(
    services : ServicesContainer
) : IHttpActionInvoker
Parameters
- services 
 Type: System.Web.Http.Controllers.ServicesContainer- The services container. 
Return Value
Type: System.Web.Http.Controllers.IHttpActionInvoker
Returns an IHttpActionInvoker instance.
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).