예제 #1
0
 public Operation StartRestore(DatabaseRestoreRequest restoreRequest)
 {
     return(AsyncHelpers.RunSync(() => asyncAdminServerClient.StartRestoreAsync(restoreRequest)));
 }
예제 #2
0
 public void StartRestore(RestoreRequest restoreRequest)
 {
     asyncAdminServerClient.StartRestoreAsync(restoreRequest).WaitUnwrap();
 }
예제 #3
0
 public Operation StartRestore(DatabaseRestoreRequest restoreRequest)
 {
     return(asyncAdminServerClient.StartRestoreAsync(restoreRequest).ResultUnwrap());
 }
예제 #4
0
 public void StartRestore(string restoreLocation, string databaseLocation, string databaseName = null, bool defrag = false)
 {
     asyncAdminServerClient.StartRestoreAsync(restoreLocation, databaseLocation, databaseName, defrag);
 }