LoggerExtensions.IsEnabled Method

Checks if the given TraceEventType is enabled.

Namespace:  Microsoft.Owin.Logging
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function IsEnabled ( _
    logger As ILogger, _
    eventType As TraceEventType _
) As Boolean
'Usage
Dim logger As ILogger 
Dim eventType As TraceEventType 
Dim returnValue As Boolean 

returnValue = logger.IsEnabled(eventType)
public static bool IsEnabled(
    this ILogger logger,
    TraceEventType eventType
)
[ExtensionAttribute]
public:
static bool IsEnabled(
    ILogger^ logger, 
    TraceEventType eventType
)
static member IsEnabled : 
        logger:ILogger * 
        eventType:TraceEventType -> bool
public static function IsEnabled(
    logger : ILogger, 
    eventType : TraceEventType
) : boolean

Parameters

Return Value

Type: System.Boolean
Returns Boolean.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ILogger. When you use instance method syntax to call this method, omit the first parameter. For more information, see b8020aae-374d-46a9-bcb7-8cc2390b93b6 or 175ce3ff-9bbf-4e64-8421-faeb81a0bb51.

See Also

Reference

LoggerExtensions Class

Microsoft.Owin.Logging Namespace