private void Join(string roomId, string userName)
 {
     this.roomId   = roomId;
     this.userName = userName.Replace(":", ":");
     TryConnect(delegate(bool result)
     {
         if (result)
         {
             chatWebSocket.Send(Chat_Model_JoinClanRoom.Create(this.roomId, this.userName), 0, true);
         }
         else
         {
             Log.Error("I failed to enter chat");
         }
     });
 }