Beispiel #1
0
		private void FireAbortedLog(ScriptLogInfo text)
		{
			var ev = NotifyAborted;
			if(ev != null)
			{
				ev(this, text);
			}
		}
Beispiel #2
0
		private void FireInfoLog(ScriptLogInfo text)
		{
			var ev = Info;
			if(ev != null)
			{
				ev(this, text);
			}
		}