ChocoPM.Services.LocalChocolateyService.WriteOutput C# (CSharp) 메소드

WriteOutput() 개인적인 메소드

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