Class Variable
Represents an object-valued execution context variable.
Inheritance
System.Object
Variable
Namespace: DNVGL.One.Compute.WorkExecution.ExecutionModel
Assembly: DNVGL.One.Compute.WorkExecution.dll
Syntax
public class Variable : object
Constructors
View SourceVariable(String, Object)
Initializes a new instance of the Variable class.
Declaration
public Variable(string name, object value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The variable name. |
System.Object | value | The variable value. |
Properties
View SourceName
Gets the variable name.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String | The variable name. |
Value
Gets the variable value.
Declaration
public object Value { get; }
Property Value
Type | Description |
---|---|
System.Object | The variable value. |