Interface IScript
Interface for script.
Inherited Members
System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)
Namespace: Kephas.Scripting
Assembly: Kephas.Scripting.dll
Syntax
public interface IScript : IExpando, IDynamicMetaObjectProvider, IIndexable
Properties
| Improve this Doc View SourceLanguage
Gets the script language.
Declaration
string Language { get; }
Property Value
Type | Description |
---|---|
System.String | The script language. |
SourceCode
Gets the source code.
Declaration
object SourceCode { get; }
Property Value
Type | Description |
---|---|
System.Object | The source code. |
Remarks
This can be typically a string or a stream.