Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IContextVariables.cs
1namespace Waher.Script
2{
6 public interface IContextVariables
7 {
14 bool TryGetVariable(string Name, out Variable Variable);
15
21 bool ContainsVariable(string Name);
22
29 Variable Add(string Name, object Value);
30 }
31}
Contains information about a variable.
Definition: Variable.cs:10
Variables available in a specific context.
bool TryGetVariable(string Name, out Variable Variable)
Tries to get a variable object, given its name.
bool ContainsVariable(string Name)
If the collection contains a variable with a given name.
Variable Add(string Name, object Value)
Adds a variable to the collection.