Method | Description | |
---|---|---|
CreateEngine ( ) : ScriptEngine |
Creates a new script runtime and returns its IronRuby engine. The configuration of the runtime is loaded from .NET configuration files if available. Creates a runtime using CreateRuntime() method. |
|
CreateEngine ( Action |
Creates a new script runtime and returns its IronRuby engine. The configuration of the runtime is loaded from .NET configuration files if available.
|
|
CreateRubySetup ( ) : LanguageSetup |
Creates IronRuby setup with default language names and file extensions.
|
|
CreateRubySetup ( Action |
Creates a default IronRuby setup and passes it to the given delegate for initialization.
|
|
CreateRuntime ( ) : |
Creates a new script runtime configured using .NET configuration files. A default IronRuby configuration is added if not found anywhere in the .NET configuration files.
|
|
CreateRuntime ( |
Creates a runtime given a runtime setup.
|
|
GetEngine ( |
Retrieves an IronRuby engine from a given script runtime.
|
Method | Description | |
---|---|---|
IndexOfRubySetup ( |
public static CreateEngine ( ) : ScriptEngine | ||
return | ScriptEngine |
public static CreateEngine ( Action |
||
setupInitializer | Action |
/// Delegate that receives an instance of IronRuby's |
return | ScriptEngine |
public static CreateRubySetup ( ) : LanguageSetup | ||
return | LanguageSetup |
public static CreateRubySetup ( Action |
||
initializer | Action |
/// A delegate that receives a fresh instance of IronRuby's |
return | LanguageSetup |
public static CreateRuntime ( ) : |
||
return |
public static CreateRuntime ( |
||
setup | The setup to use to configure the runtime. It provides all information that's needed for the runtime initialization. | |
return |
public static GetEngine ( |
||
runtime | The runtime to get the engine from. | |
return | ScriptEngine |