System.Diagnostics.Log.RemoveOnLogSwitchLevel C# (CSharp) Method

RemoveOnLogSwitchLevel() public static method

public static RemoveOnLogSwitchLevel ( LogSwitchLevelHandler handler ) : void
handler LogSwitchLevelHandler
return void
    	public static void RemoveOnLogSwitchLevel(LogSwitchLevelHandler handler)
    	{
            lock (locker)
                _LogSwitchLevelHandler = 
                    (LogSwitchLevelHandler) MulticastDelegate.Remove(_LogSwitchLevelHandler, handler);
    	}