Example #1
0
 public Dialog(IChannelOwner parent, string guid, DialogInitializer initializer) : base(parent, guid)
 {
     _channel     = new DialogChannel(guid, parent.Connection, this);
     _initializer = initializer;
 }
Example #2
0
 public Dialog(ConnectionScope scope, string guid, DialogInitializer initializer)
 {
     _scope   = scope;
     _channel = new DialogChannel(guid, scope, this);
 }