ChocoPM.Services.LocalChocolateyService.WriteError C# (CSharp) Méthode

WriteError() private méthode

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