Class ExecutionInfo
Script execution information.
Inheritance
System.Object
ExecutionInfo
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TimeCockpit.Data.Scripting
Assembly: TimeCockpit.Data.dll
Syntax
public class ExecutionInfo
Constructors
ExecutionInfo()
Declaration
public ExecutionInfo()
Properties
ModelElementPath
Gets or sets the logical path of the script within the model.
Declaration
public string ModelElementPath { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Script
Gets or sets the script content.
Declaration
public string Script { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ScriptFilePath
Gets or sets the script file path.
Declaration
public string ScriptFilePath { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
FromString(String)
Create simple execution info from string.
Declaration
public static ExecutionInfo FromString(string script)
Parameters
Type | Name | Description |
---|---|---|
System.String | script | Script source. |
Returns
Type | Description |
---|---|
ExecutionInfo | Execution info. |