PowerShell/src/Microsoft.PowerShell.Commands.Management/commands/management/RollbackTransactionCommand.cs
PowerShell Team 9ed2c2a68b Update files from psl-monad
This commit uses psl-monad branch source-depot 28156300
And corresponds to [SD:692351]
2016-04-06 11:55:18 -07:00

35 lines
1.1 KiB
C#

/********************************************************************++
Copyright (c) Microsoft Corporation. All rights reserved.
--********************************************************************/
using System;
using System.Management.Automation;
using System.Management.Automation.Provider;
using Dbg = System.Management.Automation;
namespace Microsoft.PowerShell.Commands
{
/// <summary>
/// A command that rolls back a transaction.
/// </summary>
[Cmdlet(VerbsCommon.Undo, "Transaction", SupportsShouldProcess = true, HelpUri = "http://go.microsoft.com/fwlink/?LinkID=135268")]
public class UndoTransactionCommand : PSCmdlet
{
/// <summary>
/// Rolls the current transaction back.
/// </summary>
protected override void EndProcessing ()
{
// Rollback the transaction
if(ShouldProcess(
NavigationResources.TransactionResource,
NavigationResources.RollbackAction))
{
this.Context.TransactionManager.Rollback();
}
}
} // RollbackTransactionCommand
} // namespace Microsoft.PowerShell.Commands