Example #1
0
 public System.Threading.Tasks.Task LogoutAsync(ChatService.ClientApp.Service.User user)
 {
     return(base.Channel.LogoutAsync(user));
 }
Example #2
0
 public void Logout(ChatService.ClientApp.Service.User user)
 {
     base.Channel.Logout(user);
 }
Example #3
0
 public void LeaveRoom(ChatService.ClientApp.Service.User user, ChatService.ClientApp.Service.Room room)
 {
     base.Channel.LeaveRoom(user, room);
 }
Example #4
0
 public System.Threading.Tasks.Task LeaveRoomAsync(ChatService.ClientApp.Service.User user, ChatService.ClientApp.Service.Room room)
 {
     return(base.Channel.LeaveRoomAsync(user, room));
 }
Example #5
0
 public void EnterRoom(ChatService.ClientApp.Service.User user, ChatService.ClientApp.Service.Room room)
 {
     base.Channel.EnterRoom(user, room);
 }