Method | Description | |
---|---|---|
GetScript ( int index ) : string |
Returns script text.
|
|
RunScript ( int index, ExecuteHandler handler ) : bool |
Executes script.
|
|
RunScript ( int index, IScriptExecutor executor ) : bool |
Executes script.
|
|
RunScript ( string script, ExecuteHandler handler ) : bool |
Executes script.
|
|
RunScript ( string script, IScriptExecutor executor ) : bool |
Executes script.
|
public static GetScript ( int index ) : string | ||
index | int | /// Zero-based script index. /// |
return | string |
public static RunScript ( int index, ExecuteHandler handler ) : bool | ||
index | int | /// The script index to execute. /// |
handler | ExecuteHandler | /// Delegate which is called. /// |
return | bool |
public static RunScript ( int index, IScriptExecutor executor ) : bool | ||
index | int | /// The script index to execute. /// |
executor | IScriptExecutor | /// Virtual machine which executes the script. /// |
return | bool |
public static RunScript ( string script, ExecuteHandler handler ) : bool | ||
script | string | /// The script text to execute. /// |
handler | ExecuteHandler | /// Delegate which is called. /// |
return | bool |
public static RunScript ( string script, IScriptExecutor executor ) : bool | ||
script | string | /// The script text to execute. /// |
executor | IScriptExecutor | /// Virtual machine which executes the script. /// |
return | bool |