Exemplo n.º 1
0
 public void Disconnect(WCFChatBase.Client client)
 {
     base.Channel.Disconnect(client);
 }
Exemplo n.º 2
0
 public System.Threading.Tasks.Task DisconnectAsync(WCFChatBase.Client client)
 {
     return(base.Channel.DisconnectAsync(client));
 }
Exemplo n.º 3
0
 public bool SendFile(WCFChatBase.FileMessage fileMsg, WCFChatBase.Client receiver)
 {
     return(base.Channel.SendFile(fileMsg, receiver));
 }
Exemplo n.º 4
0
 public System.Threading.Tasks.Task <bool> SendFileAsync(WCFChatBase.FileMessage fileMsg, WCFChatBase.Client receiver)
 {
     return(base.Channel.SendFileAsync(fileMsg, receiver));
 }
Exemplo n.º 5
0
 public System.Threading.Tasks.Task IsWritingAsync(WCFChatBase.Client client)
 {
     return(base.Channel.IsWritingAsync(client));
 }
Exemplo n.º 6
0
 public void IsWriting(WCFChatBase.Client client)
 {
     base.Channel.IsWriting(client);
 }
Exemplo n.º 7
0
 public System.Threading.Tasks.Task WhisperAsync(WCFChatBase.Message msg, WCFChatBase.Client receiver)
 {
     return(base.Channel.WhisperAsync(msg, receiver));
 }
Exemplo n.º 8
0
 public void Whisper(WCFChatBase.Message msg, WCFChatBase.Client receiver)
 {
     base.Channel.Whisper(msg, receiver);
 }
Exemplo n.º 9
0
 public bool Connect(WCFChatBase.Client client)
 {
     return(base.Channel.Connect(client));
 }