ChocoPM.Services.LocalChocolateyService.WriteOutput C# (CSharp) Method

WriteOutput() private method

Helper function to write output messages to the faux PowerShell console.
private WriteOutput ( string message ) : void
message string Message to be written.
return void
        private void WriteOutput(string message)
        {
            _mainWindowVm.OutputBuffer.Add(new PowerShellOutputLine{Text = message, Type = PowerShellLineType.Output});
        }