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