Beispiel #1
0
 public void Spiski(ref string[] logins, ref string[] names)
 {
     MpLabChat.ChatServiceReference.SpiskiRequest inValue = new MpLabChat.ChatServiceReference.SpiskiRequest();
     inValue.logins = logins;
     inValue.names  = names;
     MpLabChat.ChatServiceReference.SpiskiResponse retVal = ((MpLabChat.ChatServiceReference.IChatService)(this)).Spiski(inValue);
     logins = retVal.logins;
     names  = retVal.names;
 }
Beispiel #2
0
 public System.Threading.Tasks.Task <MpLabChat.ChatServiceReference.SpiskiResponse> SpiskiAsync(MpLabChat.ChatServiceReference.SpiskiRequest request)
 {
     return(base.Channel.SpiskiAsync(request));
 }
Beispiel #3
0
 MpLabChat.ChatServiceReference.SpiskiResponse MpLabChat.ChatServiceReference.IChatService.Spiski(MpLabChat.ChatServiceReference.SpiskiRequest request)
 {
     return(base.Channel.Spiski(request));
 }