示例#1
0
 public System.Threading.Tasks.Task <Client.Server.SendFileResponse> SendFileAsync(string FullPath, System.IO.Stream Stream)
 {
     Client.Server.RemoteFile inValue = new Client.Server.RemoteFile();
     inValue.FullPath = FullPath;
     inValue.Stream   = Stream;
     return(((Client.Server.IDeployer)(this)).SendFileAsync(inValue));
 }
示例#2
0
 public void SendFile(string FullPath, System.IO.Stream Stream)
 {
     Client.Server.RemoteFile inValue = new Client.Server.RemoteFile();
     inValue.FullPath = FullPath;
     inValue.Stream   = Stream;
     Client.Server.SendFileResponse retVal = ((Client.Server.IDeployer)(this)).SendFile(inValue);
 }
示例#3
0
 System.Threading.Tasks.Task <Client.Server.SendFileResponse> Client.Server.IDeployer.SendFileAsync(Client.Server.RemoteFile request)
 {
     return(base.Channel.SendFileAsync(request));
 }
示例#4
0
 Client.Server.SendFileResponse Client.Server.IDeployer.SendFile(Client.Server.RemoteFile request)
 {
     return(base.Channel.SendFile(request));
 }