| ILoggerExtensionsConditionalDebugTArgument1, TArgument2 Method (ILogger, String, TArgument1, TArgument2) |
Writes the diagnostic message at the Debug level using the specified parameters.
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 ConditionalDebug<TArgument1, TArgument2>(
this ILogger logger,
string message,
TArgument1 argument1,
TArgument2 argument2
)
<ExtensionAttribute>
Public Shared Sub ConditionalDebug(Of TArgument1, TArgument2) (
logger As ILogger,
message As String,
argument1 As TArgument1,
argument2 As TArgument2
)
Dim logger As ILogger
Dim message As String
Dim argument1 As TArgument1
Dim argument2 As TArgument2
logger.ConditionalDebug(message,
argument1, argument2)
[<ExtensionAttribute>]
static member ConditionalDebug :
logger : ILogger *
message : string *
argument1 : 'TArgument1 *
argument2 : 'TArgument2 -> unit
Parameters
- logger
- Type: NLogILogger
A logger implementation that will handle the message. - message
- Type: SystemString
A string containing one format item. - argument1
- Type: TArgument1
The first argument to format. - argument2
- Type: TArgument2
The second argument to format.
Type Parameters
- TArgument1
- The type of the first argument.
- TArgument2
- The type of the second 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