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