예제 #1
0
 public System.Threading.Tasks.Task <bool> CreateNewRoomAsync(WcfChatPost.ChatUser ourName, WcfChatPost.ChatUser name, WcfChatPost.ChatRoom nameRoom)
 {
     return(base.Channel.CreateNewRoomAsync(ourName, name, nameRoom));
 }
예제 #2
0
 public System.Threading.Tasks.Task AddInRoomAsync(WcfChatPost.ChatUser user, WcfChatPost.ChatUser ourname, WcfChatPost.ChatRoom room)
 {
     return(base.Channel.AddInRoomAsync(user, ourname, room));
 }
예제 #3
0
 public bool CreateNewRoom(WcfChatPost.ChatUser ourName, WcfChatPost.ChatUser name, WcfChatPost.ChatRoom nameRoom)
 {
     return(base.Channel.CreateNewRoom(ourName, name, nameRoom));
 }
예제 #4
0
 public void AddInRoom(WcfChatPost.ChatUser user, WcfChatPost.ChatUser ourname, WcfChatPost.ChatRoom room)
 {
     base.Channel.AddInRoom(user, ourname, room);
 }
예제 #5
0
 public System.Threading.Tasks.Task ExitRoomAsync(WcfChatPost.ChatUser user, WcfChatPost.ChatRoom room)
 {
     return(base.Channel.ExitRoomAsync(user, room));
 }
예제 #6
0
 public void ExitRoom(WcfChatPost.ChatUser user, WcfChatPost.ChatRoom room)
 {
     base.Channel.ExitRoom(user, room);
 }
예제 #7
0
 public System.Threading.Tasks.Task SendNewMessageAsync(WcfChatPost.ChatMessage newMessage, WcfChatPost.ChatRoom room)
 {
     return(base.Channel.SendNewMessageAsync(newMessage, room));
 }
예제 #8
0
 public void SendNewMessage(WcfChatPost.ChatMessage newMessage, WcfChatPost.ChatRoom room)
 {
     base.Channel.SendNewMessage(newMessage, room);
 }