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