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
name
stringThe variable name.
Returns
Exceptions
- ArgumentNullException
name
is null.- KeyNotFoundException
Variable
name
does not exist.
SetValue(string, object)
Sets a variable value.
void SetValue(string name, object value)
Parameters
Exceptions
- ArgumentNullException
name
is null.