Beispiel #1
0
 public bool StartDownload(string localFileName)
 {
     if (RecordFile != null)
     {
         return(RecordFile.Download(localFileName));
     }
     return(false);
 }
Beispiel #2
0
 public bool StartDownload(DateTime startTime, DateTime stopTime, string localFileName)
 {
     if (RecordFile != null)
     {
         return(RecordFile.Download(Config.Channel, startTime, stopTime, localFileName));
     }
     return(false);
 }