public System.Threading.Tasks.Task <Drs.Service.SyncServerSvc.ResponseMessageServerFileSync> GetFileByNameAsync(string FileName, int FileType, System.Guid UidVersion)
 {
     Drs.Service.SyncServerSvc.RequestMessageServerFileSync inValue = new Drs.Service.SyncServerSvc.RequestMessageServerFileSync();
     inValue.FileName   = FileName;
     inValue.FileType   = FileType;
     inValue.UidVersion = UidVersion;
     return(((Drs.Service.SyncServerSvc.ISyncServerSvc)(this)).GetFileByNameAsync(inValue));
 }
 public bool GetFileByName(string FileName, int FileType, System.Guid UidVersion, out string Message, out System.IO.Stream File)
 {
     Drs.Service.SyncServerSvc.RequestMessageServerFileSync inValue = new Drs.Service.SyncServerSvc.RequestMessageServerFileSync();
     inValue.FileName   = FileName;
     inValue.FileType   = FileType;
     inValue.UidVersion = UidVersion;
     Drs.Service.SyncServerSvc.ResponseMessageServerFileSync retVal = ((Drs.Service.SyncServerSvc.ISyncServerSvc)(this)).GetFileByName(inValue);
     Message = retVal.Message;
     File    = retVal.File;
     return(retVal.HasError);
 }
 System.Threading.Tasks.Task <Drs.Service.SyncServerSvc.ResponseMessageServerFileSync> Drs.Service.SyncServerSvc.ISyncServerSvc.GetFileByNameAsync(Drs.Service.SyncServerSvc.RequestMessageServerFileSync request)
 {
     return(base.Channel.GetFileByNameAsync(request));
 }
 Drs.Service.SyncServerSvc.ResponseMessageServerFileSync Drs.Service.SyncServerSvc.ISyncServerSvc.GetFileByName(Drs.Service.SyncServerSvc.RequestMessageServerFileSync request)
 {
     return(base.Channel.GetFileByName(request));
 }