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