Class AFixedContextVariable
Fixed context variables serves as a base class for variables that are tied to a specific context.
This is mostly useful for defining variables that are always associated with a particular context due to the function that use them
Example : TokenInit will always create SequenceContext variables.
Inheritance
AFixedContextVariable
Assembly: Xareus.Scenarios.dll
Syntax
public abstract class AFixedContextVariable
Constructors
AFixedContextVariable()
Declaration
protected AFixedContextVariable()
AFixedContextVariable(string)
Declaration
protected AFixedContextVariable(string path)
Parameters
Type |
Name |
Description |
string |
path |
|
Properties
Context
The context the Variable path refers to
Declaration
public abstract ContextType Context { get; }
Property Value
Path
Declaration
public VariablePath Path { get; set; }
Property Value
Methods
GetFullPath(bool)
Get the full path to the variable, including $() if needed
Declaration
public virtual string GetFullPath(bool asInputVariable = true)
Parameters
Type |
Name |
Description |
bool |
asInputVariable |
|
Returns
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
implicit operator string(AFixedContextVariable)
Implicit conversion to string
Declaration
public static implicit operator string(AFixedContextVariable value)
Parameters
Returns