コード例 #1
0
 public byte[] GetClosingFilesTimeStampFile(Guid idPreservationStorageDevice, long skip, int take, out long fileSize)
 {
     try
     {
         var svc = new PreservationService();
         return(svc.GetClosingFilesTimeStampFile(idPreservationStorageDevice, skip, take, out fileSize));
     }
     catch (Exception ex)
     {
         throw CheckExceptionToThrow(ex);
     }
 }