Windows-powershell / PowerShell-master /src /System.Management.Automation /FormatAndOutput /out-textInterface /OutTextInterface.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Management.Automation; | |
| using System.Management.Automation.Internal; | |
| using Microsoft.PowerShell.Commands.Internal.Format; | |
| namespace Microsoft.PowerShell.Commands | |
| { | |
| /// <summary> | |
| /// Implementation for the out-lineoutput command | |
| /// it provides a wrapper for the OutCommandInner class, | |
| /// which is the general purpose output command. | |
| /// </summary> | |
| [] | |
| public class OutLineOutputCommand : FrontEndCommandBase | |
| { | |
| /// <summary> | |
| /// Command line switch for ILineOutput communication channel. | |
| /// </summary> | |
| /// <value></value> | |
| [] | |
| public object LineOutput | |
| { | |
| get { return _lineOutput; } | |
| set { _lineOutput = value; } | |
| } | |
| private object _lineOutput = null; | |
| /// <summary> | |
| /// Set inner command. | |
| /// </summary> | |
| public OutLineOutputCommand() | |
| { | |
| this.implementation = new OutCommandInner(); | |
| } | |
| /// <summary> | |
| /// </summary> | |
| protected override void BeginProcessing() | |
| { | |
| if (_lineOutput == null) | |
| { | |
| ProcessNullLineOutput(); | |
| } | |
| LineOutput lo = _lineOutput as LineOutput; | |
| if (lo == null) | |
| { | |
| ProcessWrongTypeLineOutput(_lineOutput); | |
| } | |
| ((OutCommandInner)this.implementation).LineOutput = lo; | |
| base.BeginProcessing(); | |
| } | |
| private void ProcessNullLineOutput() | |
| { | |
| string msg = StringUtil.Format(FormatAndOut_out_xxx.OutLineOutput_NullLineOutputParameter); | |
| ErrorRecord errorRecord = new ErrorRecord( | |
| PSTraceSource.NewArgumentNullException("LineOutput"), | |
| "OutLineOutputNullLineOutputParameter", | |
| ErrorCategory.InvalidArgument, | |
| null); | |
| errorRecord.ErrorDetails = new ErrorDetails(msg); | |
| this.ThrowTerminatingError(errorRecord); | |
| } | |
| private void ProcessWrongTypeLineOutput(object obj) | |
| { | |
| string msg = StringUtil.Format(FormatAndOut_out_xxx.OutLineOutput_InvalidLineOutputParameterType, | |
| obj.GetType().FullName, | |
| typeof(LineOutput).FullName); | |
| ErrorRecord errorRecord = new ErrorRecord( | |
| new InvalidCastException(), | |
| "OutLineOutputInvalidLineOutputParameterType", | |
| ErrorCategory.InvalidArgument, | |
| null); | |
| errorRecord.ErrorDetails = new ErrorDetails(msg); | |
| this.ThrowTerminatingError(errorRecord); | |
| } | |
| } | |
| } | |