ServicesExtensions.GetTraceManager Method

Gets the ITraceManager service.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function GetTraceManager ( _
    services As ServicesContainer _
) As ITraceManager
'Usage
Dim services As ServicesContainer 
Dim returnValue As ITraceManager 

returnValue = services.GetTraceManager()
public static ITraceManager GetTraceManager(
    this ServicesContainer services
)
[ExtensionAttribute]
public:
static ITraceManager^ GetTraceManager(
    ServicesContainer^ services
)
static member GetTraceManager : 
        services:ServicesContainer -> ITraceManager
public static function GetTraceManager(
    services : ServicesContainer
) : ITraceManager

Parameters

Return Value

Type: System.Web.Http.Tracing.ITraceManager
Returns anITraceManagerinstance.

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 ITraceManager interface is used internally to initialize the ASP.NET Web API tracing framework.

See Also

Reference

ServicesExtensions Class

System.Web.Http Namespace