C# Class Sharpex2D.Scripting.ScriptStorageBuffer

Exibir arquivo Open project: ThuCommix/Sharpex2D

Public Methods

Method Description
Add ( System.Guid guid, Assembly compiledScript ) : void

Adds a new compiled script to the storage.

Exists ( System.Guid guid ) : bool

A value indicating whether the compiled script exists.

Remove ( System.Guid guid ) : void

Removes a compiled script.

ScriptStorageBuffer ( ) : System

Initializes a new ScriptStorageBuffer class.

Update ( System.Guid guid, Assembly compiledScript ) : void

Updates a already existing compiled script.

this ( System.Guid guid ) : Assembly

Sets or gets the CompiledScript.

Method Details

Add() public method

Adds a new compiled script to the storage.
public Add ( System.Guid guid, Assembly compiledScript ) : void
guid System.Guid The Guid.
compiledScript System.Reflection.Assembly The CompiledScript.
return void

Exists() public method

A value indicating whether the compiled script exists.
public Exists ( System.Guid guid ) : bool
guid System.Guid The Guid.
return bool

Remove() public method

Removes a compiled script.
public Remove ( System.Guid guid ) : void
guid System.Guid The Guid.
return void

ScriptStorageBuffer() public method

Initializes a new ScriptStorageBuffer class.
public ScriptStorageBuffer ( ) : System
return System

Update() public method

Updates a already existing compiled script.
public Update ( System.Guid guid, Assembly compiledScript ) : void
guid System.Guid The Guid.
compiledScript System.Reflection.Assembly The CompiledScript.
return void

this() public method

Sets or gets the CompiledScript.
public this ( System.Guid guid ) : Assembly
guid System.Guid The Guid.
return System.Reflection.Assembly