コード例 #1
0
 public System.Threading.Tasks.Task <WCFTestConsoleAPP.DictService.DownloadResponse> DownloadAsync(string SenderLogin, int Dictionary_id)
 {
     WCFTestConsoleAPP.DictService.DownloadRequest inValue = new WCFTestConsoleAPP.DictService.DownloadRequest();
     inValue.SenderLogin   = SenderLogin;
     inValue.Dictionary_id = Dictionary_id;
     return(((WCFTestConsoleAPP.DictService.IFileDownload)(this)).DownloadAsync(inValue));
 }
コード例 #2
0
 public string Download(string SenderLogin, int Dictionary_id, out System.IO.Stream stream)
 {
     WCFTestConsoleAPP.DictService.DownloadRequest inValue = new WCFTestConsoleAPP.DictService.DownloadRequest();
     inValue.SenderLogin   = SenderLogin;
     inValue.Dictionary_id = Dictionary_id;
     WCFTestConsoleAPP.DictService.DownloadResponse retVal = ((WCFTestConsoleAPP.DictService.IFileDownload)(this)).Download(inValue);
     stream = retVal.stream;
     return(retVal.FileName);
 }
コード例 #3
0
 System.Threading.Tasks.Task <WCFTestConsoleAPP.DictService.DownloadResponse> WCFTestConsoleAPP.DictService.IFileDownload.DownloadAsync(WCFTestConsoleAPP.DictService.DownloadRequest request)
 {
     return(base.Channel.DownloadAsync(request));
 }
コード例 #4
0
 WCFTestConsoleAPP.DictService.DownloadResponse WCFTestConsoleAPP.DictService.IFileDownload.Download(WCFTestConsoleAPP.DictService.DownloadRequest request)
 {
     return(base.Channel.Download(request));
 }