Exemplo n.º 1
0
 /// <summary>
 /// User info callback method.
 /// </summary>
 /// <param name="user">The user information.</param>
 public void UserInformation(ChatClient.ChatService.User user)
 {
     if (UserInfo != null)
     {
         //raise event.
         UserInfo(user);
     }
 }
Exemplo n.º 2
0
 public System.Threading.Tasks.Task <ChatClient.ChatService.Message[]> GetMessagesAsync(ChatClient.ChatService.User user)
 {
     return(base.Channel.GetMessagesAsync(user));
 }
Exemplo n.º 3
0
 public ChatClient.ChatService.Message[] GetMessages(ChatClient.ChatService.User user)
 {
     return(base.Channel.GetMessages(user));
 }
Exemplo n.º 4
0
 public System.Threading.Tasks.Task <ChatClient.ChatService.User[]> JoinRoomAsync(ChatClient.ChatService.Room room, ChatClient.ChatService.User user)
 {
     return(base.Channel.JoinRoomAsync(room, user));
 }
Exemplo n.º 5
0
 public ChatClient.ChatService.User[] JoinRoom(ChatClient.ChatService.Room room, ChatClient.ChatService.User user)
 {
     return(base.Channel.JoinRoom(room, user));
 }
Exemplo n.º 6
0
 public System.Threading.Tasks.Task <ChatClient.ChatService.User> LoginAsync(ChatClient.ChatService.User user)
 {
     return(base.Channel.LoginAsync(user));
 }
Exemplo n.º 7
0
 public ChatClient.ChatService.User Login(ChatClient.ChatService.User user)
 {
     return(base.Channel.Login(user));
 }