Axiom.Scripting.Compiler.ScriptCompilerListener.HandleEvent C# (CSharp) Метод

HandleEvent() публичный Метод

Called when an event occurs during translation, return true if handled
This function is called from the translators when an event occurs that that can be responded to. Often this is overriding names, or it can be a request for custom resource creation.
public HandleEvent ( ScriptCompiler compiler, ScriptCompilerEvent &evt, object &retVal ) : bool
compiler ScriptCompiler A reference to the compiler
evt ScriptCompilerEvent The event object holding information about the event to be processed
retVal object A possible return value from handlers
Результат bool
		public virtual bool HandleEvent( ScriptCompiler compiler, ref ScriptCompilerEvent evt, out object retVal )
		{
			retVal = null;
			return false;
		}
	}