Design Pattern Examples
Overview of object-oriented design patterns
HandlerChain_Class.cs File Reference

The IMessageHandler interface and the HandlerChain class used in the HandlerChain pattern. More...

Go to the source code of this file.

Classes

interface  IMessageHandler
 Represents a handler in a chain of handlers. All objects that participate in the HandlerChain class must implement this interface. More...
 
class  HandlerChain
 Represents a list of handlers that all implement the IMessageHandler interface. This list can be dynamically updated and each element in the list is passed messages for processing. More...
 

Namespaces

namespace  DesignPatternExamples_csharp
 The namespace containing all Design Pattern Examples implemented in C#.
 

Detailed Description

The IMessageHandler interface and the HandlerChain class used in the HandlerChain pattern.

Definition in file HandlerChain_Class.cs.