log4net SDK Reference

LoggerManager.Exists Method (String, String)

Returns the named logger if it exists.

[Visual Basic]
Overloads Public Shared Function Exists( _
   ByVal repository As String, _
   ByVal name As String _
) As ILogger
[C#]
public static ILogger Exists(
   string repository,
   string name
);

Parameters

repository
The repository to lookup in.
name
The fully qualified logger name to look for.

Return Value

The logger found, or null if the named logger does not exist in the specified repository.

Remarks

If the named logger exists (in the specified repository) then it returns a reference to the logger, otherwise it returns null.

See Also

LoggerManager Class | log4net.Core Namespace | LoggerManager.Exists Overload List