Brunet.Messaging.Subscriber.Subscriber C# (CSharp) Метод

Subscriber() публичный Метод

Subscribes the out going data from this source to the specified handler.
public Subscriber ( IDataHandler dh, object state ) : System
dh IDataHandler Data that the subscriber wants passed to the handler on each call.
state object Data that the subscriber wants passed to the handler on each call.
Результат System
    public Subscriber(IDataHandler dh, object state) {
      Handler = dh;
      State = state;
    }