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

WriteError() 개인적인 메소드

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