コード例 #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
ファイル: ChatService.cs プロジェクト: drafteee/WCF_
 public System.Threading.Tasks.Task AddInRoomAsync(WcfChatPost.ChatUser user, WcfChatPost.ChatUser ourname, WcfChatPost.ChatRoom room)
 {
     return(base.Channel.AddInRoomAsync(user, ourname, room));
 }
コード例 #10
0
ファイル: ChatService.cs プロジェクト: drafteee/WCF_
 public void AddInRoom(WcfChatPost.ChatUser user, WcfChatPost.ChatUser ourname, WcfChatPost.ChatRoom room)
 {
     base.Channel.AddInRoom(user, ourname, room);
 }
コード例 #11
0
ファイル: ChatService.cs プロジェクト: drafteee/WCF_
 public System.Threading.Tasks.Task ExitRoomAsync(WcfChatPost.ChatUser user, WcfChatPost.ChatRoom room)
 {
     return(base.Channel.ExitRoomAsync(user, room));
 }
コード例 #12
0
ファイル: ChatService.cs プロジェクト: drafteee/WCF_
 public void ExitRoom(WcfChatPost.ChatUser user, WcfChatPost.ChatRoom room)
 {
     base.Channel.ExitRoom(user, room);
 }