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

InvokeLogSwitchLevelHandlers() static private method

static private InvokeLogSwitchLevelHandlers ( LogSwitch ls, LoggingLevels newLevel ) : void
ls LogSwitch
newLevel LoggingLevels
return void
    	internal static void InvokeLogSwitchLevelHandlers (LogSwitch ls, LoggingLevels newLevel)
    	{
            LogSwitchLevelHandler handler = _LogSwitchLevelHandler;
    		if (handler != null)
    			handler(ls, newLevel);
    	}