Exemplo n.º 1
0
        public override void RefreshRoomPropertiesExecuted(RefreshRoomPropertiesCommand command)
        {
            Hashtable ht = RoomPanel.Network.Client.CurrentRoom.CustomProperties;
            string    room_property_json = Convert.ToString(ht ["room_property"]);

            Debug.LogFormat("RefreshRoomPropertiesExecuted: {0}", room_property_json);
            RoomPanel.RoomPropertiesJson = room_property_json;
        }
Exemplo n.º 2
0
 public virtual void ExecuteRefreshRoomProperties(RefreshRoomPropertiesCommand command)
 {
     command.Sender = RoomPanel;
     RoomPanel.RefreshRoomProperties.OnNext(command);
 }
Exemplo n.º 3
0
 public virtual void RefreshRoomPropertiesExecuted(RefreshRoomPropertiesCommand command)
 {
 }
Exemplo n.º 4
0
 public virtual void RefreshRoomPropertiesHandler(RefreshRoomPropertiesCommand command)
 {
     this.RefreshRoomProperties(command.Sender as RoomPanelViewModel);
 }