Ejemplo n.º 1
0
 public RoomViewModel(Room room)
 {
     this.room = room;
       this.dispatcher = Dispatcher.CurrentDispatcher;
       this.messages = new BindableCollection<IMessageViewModel>();
       this.users = new BindableCollection<User>();
 }
Ejemplo n.º 2
0
 internal StreamingContext(ISite site, Room room, Action<Message> callback)
 {
   this.site = site;
   this.room = room;
   this.callback = callback;
 }