private AsyncAction DoRevert()
        {
            AsyncAction revertSnapshot = new VMSnapshotRevertAction(_snapshot);

            revertSnapshot.ShowProgress = true;
            return(revertSnapshot);
        }
示例#2
0
        private void ExecuteRevertAction()
        {
            var action = new VMSnapshotRevertAction(_snapshot);

            action.RunAsync();
        }