| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/orudge/ClearScript/master/ClearScript/ScriptObject.cs | [Back] [Original] |
using System.Dynamic;
namespace Microsoft.ClearScript
{
///
/// Represents a script object.
///
///
/// Use this class in conjunction with C#'s
/// is
/// operator to identify script objects.
///
///
public abstract class ScriptObject : DynamicObject
{
internal ScriptObject()
{
}
///
/// Gets the script engine that owns the object.
///
public abstract ScriptEngine Engine { get; }
}
}
| Web Proxy Viewer | New URL | Original Page |