C# 클래스 FdoToolbox.Base.Scripting.ScriptingEngine

Application script engine
파일 보기 프로젝트 열기: jumpinjackie/fdotoolbox

공개 메소드들

메소드 설명
ExecuteStatements ( string script ) : void

Executes the statements.

InvokeLoadedScript ( string key ) : void

Invokes the loaded script

LoadScript ( string scriptPath ) : void

Loads the script

RecompileScript ( string scriptPath ) : void

Recompiles the script. Call this if the referenced script has changed since it was loade

RunScript ( string scriptPath ) : void

Runs the script.

UnloadScript ( string script ) : void

Unloads the script.

비공개 메소드들

메소드 설명
ScriptingEngine ( ) : System

메소드 상세

ExecuteStatements() 공개 메소드

Executes the statements.
public ExecuteStatements ( string script ) : void
script string The script.
리턴 void

InvokeLoadedScript() 공개 메소드

Invokes the loaded script
public InvokeLoadedScript ( string key ) : void
key string The key.
리턴 void

LoadScript() 공개 메소드

Loads the script
public LoadScript ( string scriptPath ) : void
scriptPath string The script path.
리턴 void

RecompileScript() 공개 메소드

Recompiles the script. Call this if the referenced script has changed since it was loade
public RecompileScript ( string scriptPath ) : void
scriptPath string The script path.
리턴 void

RunScript() 공개 메소드

Runs the script.
public RunScript ( string scriptPath ) : void
scriptPath string The script path.
리턴 void

UnloadScript() 공개 메소드

Unloads the script.
public UnloadScript ( string script ) : void
script string The script.
리턴 void