Table of Contents

Interface IVariablesStorage

Namespace
Acuit.Pinpoint.Workflows
Assembly
Acuit.Pinpoint.Workflows.dll

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 string

The variable name.

Returns

object

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

name string

The variable name.

value object

The variable value.

Exceptions

ArgumentNullException

name is null.