FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ClearScript/ClearScript/ScriptObject.cs at master · sandboxorg/ClearScript · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
sandboxorg
/
ClearScript
Public
forked from
ClearFoundry/ClearScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
ClearScript
/
ClearScript
/
ScriptObject.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
25 lines (23 loc) · 707 Bytes
Breadcrumbs
ClearScript
/
ClearScript
/
ScriptObject.cs
Copy path
File metadata and controls
25 lines (23 loc) · 707 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using
System
.
Dynamic
;
namespace
Microsoft
.
ClearScript
{
/// <summary>
/// Represents a script object.
/// </summary>
/// <remarks>
/// Use this class in conjunction with C#'s
/// <c><see href="http://msdn.microsoft.com/en-us/library/scekt9xw(VS.71).aspx">is</see></c>
/// operator to identify script objects.
/// </remarks>
/// <seealso cref="ScriptEngine.Evaluate(string, bool, string)"/>
public
abstract
class
ScriptObject
:
DynamicObject
{
internal
ScriptObject
(
)
{
}
/// <summary>
/// Gets the script engine that owns the object.
/// </summary>
public
abstract
ScriptEngine
Engine
{
get
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL