示例#1
0
 public System.Threading.Tasks.Task <WcfChatPost.ChatMessage[]> GetNewMessagessAsync(WcfChatPost.ChatUser user)
 {
     return(base.Channel.GetNewMessagessAsync(user));
 }
示例#2
0
 public System.Threading.Tasks.Task <bool> CreateNewRoomAsync(WcfChatPost.ChatUser ourName, WcfChatPost.ChatUser name, WcfChatPost.ChatRoom nameRoom)
 {
     return(base.Channel.CreateNewRoomAsync(ourName, name, nameRoom));
 }
示例#3
0
 public WcfChatPost.ChatMessage[] GetNewMessagess(WcfChatPost.ChatUser user)
 {
     return(base.Channel.GetNewMessagess(user));
 }
示例#4
0
 public System.Threading.Tasks.Task RemoveUserAsync(WcfChatPost.ChatUser user)
 {
     return(base.Channel.RemoveUserAsync(user));
 }
示例#5
0
 public bool CreateNewRoom(WcfChatPost.ChatUser ourName, WcfChatPost.ChatUser name, WcfChatPost.ChatRoom nameRoom)
 {
     return(base.Channel.CreateNewRoom(ourName, name, nameRoom));
 }
示例#6
0
 public System.Threading.Tasks.Task <WcfChatPost.ChatRoom[]> GetRoomsAsync(WcfChatPost.ChatUser user)
 {
     return(base.Channel.GetRoomsAsync(user));
 }
示例#7
0
 public void RemoveUser(WcfChatPost.ChatUser user)
 {
     base.Channel.RemoveUser(user);
 }
示例#8
0
 public WcfChatPost.ChatRoom[] GetRooms(WcfChatPost.ChatUser user)
 {
     return(base.Channel.GetRooms(user));
 }
示例#9
0
 public System.Threading.Tasks.Task AddInRoomAsync(WcfChatPost.ChatUser user, WcfChatPost.ChatUser ourname, WcfChatPost.ChatRoom room)
 {
     return(base.Channel.AddInRoomAsync(user, ourname, room));
 }
示例#10
0
 public void AddInRoom(WcfChatPost.ChatUser user, WcfChatPost.ChatUser ourname, WcfChatPost.ChatRoom room)
 {
     base.Channel.AddInRoom(user, ourname, room);
 }
示例#11
0
 public System.Threading.Tasks.Task ExitRoomAsync(WcfChatPost.ChatUser user, WcfChatPost.ChatRoom room)
 {
     return(base.Channel.ExitRoomAsync(user, room));
 }
示例#12
0
 public void ExitRoom(WcfChatPost.ChatUser user, WcfChatPost.ChatRoom room)
 {
     base.Channel.ExitRoom(user, room);
 }