An NDoc Documented Class Library

IContext Interface

IContext represents information that should be processed by ICommand or IChain. Consider using Facade pattern for your particular IContext to get typesefe access to IContext information(data).

[Visual Basic]
Public Interface IContext
    Implements IDictionary, ICollection, IEnumerable
[C#]
public interface IContext : IDictionary, ICollection, IEnumerable

Types that implement IContext

Type Description
ContextBase Base class for IContext implementations. Simple hashmap.

Requirements

Namespace: NChain

Assembly: NChain (in NChain.dll)

See Also

NChain Namespace