C# Class Microsoft.Scripting.Hosting.ScriptRuntime

Represents a Dynamic Language Runtime in Hosting API. Hosting API counterpart for ScriptDomainManager.
Inheritance: System.MarshalByRefObject
Afficher le fichier Open project: jschementi/iron Class Usage Examples

Private Properties

Свойство Type Description
GetEngine ScriptEngine
GetEngineNoLockNoNotification ScriptEngine

Méthodes publiques

Méthode Description
CreateFromConfiguration ( ) : ScriptRuntime

Creates a new runtime with languages set up according to the current application configuration (using System.Configuration).

CreateOperations ( ) : ObjectOperations
CreateRemote ( AppDomain domain, ScriptRuntimeSetup setup ) : ScriptRuntime

Creates ScriptRuntime in the current app-domain and initialized according to the the specified settings. Creates an instance of host class specified in the setup and associates it with the created runtime. Both Runtime and ScriptHost are collocated in the specified app-domain.

CreateScope ( ) : ScriptScope
CreateScope ( object>.IDictionary dictionary ) : ScriptScope
CreateScope ( IDynamicMetaObjectProvider storage ) : ScriptScope
CreateScope ( string languageId ) : ScriptScope
CreateScope ( string languageId, object>.IDictionary storage ) : ScriptScope
CreateScope ( string languageId, IDynamicMetaObjectProvider storage ) : ScriptScope
ExecuteFile ( string path ) : ScriptScope
GetEngine ( string languageName ) : ScriptEngine
GetEngineByFileExtension ( string fileExtension ) : ScriptEngine
GetEngineByTypeName ( string assemblyQualifiedTypeName ) : ScriptEngine
InitializeLifetimeService ( ) : object
LoadAssembly ( Assembly assembly ) : void

This method walks the assembly's namespaces and name bindings to ScriptRuntime.Globals to represent the types available in the assembly. Each top-level namespace name gets bound in Globals to a dynamic object representing the namespace. Within each top-level namespace object, nested namespace names are bound to dynamic objects representing each tier of nested namespaces. When this method encounters the same namespace-qualified name, it merges names together objects representing the namespaces.

ScriptRuntime ( ScriptRuntimeSetup setup ) : System

Creates ScriptRuntime in the current app-domain and initialized according to the the specified settings. Creates an instance of host class specified in the setup and associates it with the created runtime. Both Runtime and ScriptHost are collocated in the current app-domain.

Shutdown ( ) : void
TryGetEngine ( string languageName, ScriptEngine &engine ) : bool
TryGetEngineByFileExtension ( string fileExtension, ScriptEngine &engine ) : bool
UseFile ( string path ) : ScriptScope

Private Methods

Méthode Description
GetEngine ( LanguageContext language ) : ScriptEngine

Gets engine for the specified language.

GetEngineNoLockNoNotification ( LanguageContext language, bool &freshEngineCreated ) : ScriptEngine

Looks up the engine for the specified language. If the engine hasn't been created in this Runtime, it is instantiated here. The method doesn't lock nor send notifications to the host.

Method Details

CreateFromConfiguration() public static méthode

Creates a new runtime with languages set up according to the current application configuration (using System.Configuration).
public static CreateFromConfiguration ( ) : ScriptRuntime
Résultat ScriptRuntime

CreateOperations() public méthode

public CreateOperations ( ) : ObjectOperations
Résultat ObjectOperations

CreateRemote() public static méthode

Creates ScriptRuntime in the current app-domain and initialized according to the the specified settings. Creates an instance of host class specified in the setup and associates it with the created runtime. Both Runtime and ScriptHost are collocated in the specified app-domain.
public static CreateRemote ( AppDomain domain, ScriptRuntimeSetup setup ) : ScriptRuntime
domain System.AppDomain
setup ScriptRuntimeSetup
Résultat ScriptRuntime

CreateScope() public méthode

public CreateScope ( ) : ScriptScope
Résultat ScriptScope

CreateScope() public méthode

public CreateScope ( object>.IDictionary dictionary ) : ScriptScope
dictionary object>.IDictionary
Résultat ScriptScope

CreateScope() public méthode

public CreateScope ( IDynamicMetaObjectProvider storage ) : ScriptScope
storage IDynamicMetaObjectProvider
Résultat ScriptScope

CreateScope() public méthode

public CreateScope ( string languageId ) : ScriptScope
languageId string
Résultat ScriptScope

CreateScope() public méthode

public CreateScope ( string languageId, object>.IDictionary storage ) : ScriptScope
languageId string
storage object>.IDictionary
Résultat ScriptScope

CreateScope() public méthode

public CreateScope ( string languageId, IDynamicMetaObjectProvider storage ) : ScriptScope
languageId string
storage IDynamicMetaObjectProvider
Résultat ScriptScope

ExecuteFile() public méthode

/// path is empty, contains one or more of the invalid characters defined in GetInvalidPathChars or doesn't have an extension. ///
public ExecuteFile ( string path ) : ScriptScope
path string
Résultat ScriptScope

GetEngine() public méthode

public GetEngine ( string languageName ) : ScriptEngine
languageName string
Résultat ScriptEngine

GetEngineByFileExtension() public méthode

public GetEngineByFileExtension ( string fileExtension ) : ScriptEngine
fileExtension string
Résultat ScriptEngine

GetEngineByTypeName() public méthode

public GetEngineByTypeName ( string assemblyQualifiedTypeName ) : ScriptEngine
assemblyQualifiedTypeName string
Résultat ScriptEngine

InitializeLifetimeService() public méthode

public InitializeLifetimeService ( ) : object
Résultat object

LoadAssembly() public méthode

This method walks the assembly's namespaces and name bindings to ScriptRuntime.Globals to represent the types available in the assembly. Each top-level namespace name gets bound in Globals to a dynamic object representing the namespace. Within each top-level namespace object, nested namespace names are bound to dynamic objects representing each tier of nested namespaces. When this method encounters the same namespace-qualified name, it merges names together objects representing the namespaces.
public LoadAssembly ( Assembly assembly ) : void
assembly System.Reflection.Assembly
Résultat void

ScriptRuntime() public méthode

Creates ScriptRuntime in the current app-domain and initialized according to the the specified settings. Creates an instance of host class specified in the setup and associates it with the created runtime. Both Runtime and ScriptHost are collocated in the current app-domain.
public ScriptRuntime ( ScriptRuntimeSetup setup ) : System
setup ScriptRuntimeSetup
Résultat System

Shutdown() public méthode

public Shutdown ( ) : void
Résultat void

TryGetEngine() public méthode

public TryGetEngine ( string languageName, ScriptEngine &engine ) : bool
languageName string
engine ScriptEngine
Résultat bool

TryGetEngineByFileExtension() public méthode

public TryGetEngineByFileExtension ( string fileExtension, ScriptEngine &engine ) : bool
fileExtension string
engine ScriptEngine
Résultat bool

UseFile() public méthode

path is null file extension does not map to language engine language does not have any search paths file does exist in language's search path
public UseFile ( string path ) : ScriptScope
path string
Résultat ScriptScope