Windows-powershell / PowerShell-master /src /Microsoft.PowerShell.Commands.Management /commands /management /GetTransactionCommand.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System.Management.Automation; | |
| using Dbg = System.Management.Automation; | |
| namespace Microsoft.PowerShell.Commands | |
| { | |
| /// <summary> | |
| /// A command that gets the active transaction. | |
| /// </summary> | |
| [] | |
| [] | |
| public class GetTransactionCommand : PSCmdlet | |
| { | |
| /// <summary> | |
| /// Creates a new transaction. | |
| /// </summary> | |
| protected override void EndProcessing() | |
| { | |
| WriteObject(this.Context.TransactionManager.GetCurrent()); | |
| } | |
| } | |
| } | |