| ILoggerExtensionsConditionalTraceTArgument Method (ILogger, String, TArgument) |
Writes the diagnostic message at the Debug level using the specified parameter.
Only executed when the DEBUG conditional compilation symbol is set.
Namespace:
NLog
Assembly:
NLog (in NLog.dll) Version: 5.3.4+73d83d3161d31288ca5c554cc50d27b6bed5f28b
Syntax public static void ConditionalTrace<TArgument>(
this ILogger logger,
string message,
TArgument argument
)
<ExtensionAttribute>
Public Shared Sub ConditionalTrace(Of TArgument) (
logger As ILogger,
message As String,
argument As TArgument
)
Dim logger As ILogger
Dim message As String
Dim argument As TArgument
logger.ConditionalTrace(message,
argument)
[<ExtensionAttribute>]
static member ConditionalTrace :
logger : ILogger *
message : string *
argument : 'TArgument -> unit
Parameters
- logger
- Type: NLogILogger
A logger implementation that will handle the message. - message
- Type: SystemString
A string containing one format item. - argument
- Type: TArgument
The argument to format.
Type Parameters
- TArgument
- The type of the argument.
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
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also