C# Class Rhino.Serialize.ScriptableInputStream

Class ScriptableInputStream is used to read in a JavaScript object or function previously serialized with a ScriptableOutputStream.
Class ScriptableInputStream is used to read in a JavaScript object or function previously serialized with a ScriptableOutputStream. References to names in the exclusion list replaced with references to the top-level scope specified during creation of the ScriptableInputStream.
Inheritance: Sharpen.ObjectInputStream
ファイルを表示 Open project: hazzik/Rhino.Net Class Usage Examples

Public Methods

Method Description
ScriptableInputStream ( Stream @in, Scriptable scope ) : System

Create a ScriptableInputStream.

Create a ScriptableInputStream.

Protected Methods

Method Description
ResolveClass ( ObjectStreamClass desc ) : Type
ResolveObject ( object obj ) : object

Method Details

ResolveClass() protected method

protected ResolveClass ( ObjectStreamClass desc ) : Type
desc ObjectStreamClass
return System.Type

ResolveObject() protected method

protected ResolveObject ( object obj ) : object
obj object
return object

ScriptableInputStream() public method

Create a ScriptableInputStream.
Create a ScriptableInputStream.
public ScriptableInputStream ( Stream @in, Scriptable scope ) : System
@in Stream
scope Scriptable the top-level scope to create the object in.
return System