Interface IVariablesStorage
A workflow variables storage container.
public interface IVariablesStorage : IDynamicMetaObjectProvider, INotifyPropertyChanged
- Inherited Members
Methods
GetValue(string)
Gets a variable value.
object? GetValue(string name)
Parameters
namestringThe variable name.
Returns
Exceptions
- ArgumentNullException
nameis null.- KeyNotFoundException
Variable
namedoes not exist.
SetValue(string, object?)
Sets a variable value.
void SetValue(string name, object? value)
Parameters
Exceptions
- ArgumentNullException
nameis null.