Exemplo n.º 1
0
 public void StoreBackupSetData(BackupSetReference backupsetname, byte[] bsdata)
 {
     DstFSInterop.StoreIndexFileAsync(backupsetname.StringRepr(), IndexFileType.BackupSet, bsdata).Wait();
 }
Exemplo n.º 2
0
 public byte[] LoadBackupSetData(BackupSetReference backupsetname)
 {
     return(DstFSInterop.LoadIndexFileAsync(backupsetname.StringRepr(), IndexFileType.BackupSet).Result);
 }