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

WriteOutput() private méthode

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