C# Class NuGet.VisualStudio.OutputConsole

This class implements the IConsole interface in order to integrate with the PowerShellHost. It sends PowerShell host outputs to the VS Output tool window.
Inheritance: IConsole, IConsoleDispatcher
Mostra file Open project: monoman/NugetCracker

Public Methods

Method Description
AcceptKeyInput ( ) : void
Clear ( ) : void
ClearConsole ( ) : void
OutputConsole ( IVsOutputWindow outputWindow ) : System
Start ( ) : void
WaitKey ( ) : NuGetConsole.VsKeyInfo
Write ( string text ) : void
Write ( string text, System foreground, System background ) : void
WriteBackspace ( ) : void
WriteLine ( string text ) : void
WriteProgress ( string operation, int percentComplete ) : void

Method Details

AcceptKeyInput() public method

public AcceptKeyInput ( ) : void
return void

Clear() public method

public Clear ( ) : void
return void

ClearConsole() public method

public ClearConsole ( ) : void
return void

OutputConsole() public method

public OutputConsole ( IVsOutputWindow outputWindow ) : System
outputWindow IVsOutputWindow
return System

Start() public method

public Start ( ) : void
return void

WaitKey() public method

public WaitKey ( ) : NuGetConsole.VsKeyInfo
return NuGetConsole.VsKeyInfo

Write() public method

public Write ( string text ) : void
text string
return void

Write() public method

public Write ( string text, System foreground, System background ) : void
text string
foreground System
background System
return void

WriteBackspace() public method

public WriteBackspace ( ) : void
return void

WriteLine() public method

public WriteLine ( string text ) : void
text string
return void

WriteProgress() public method

public WriteProgress ( string operation, int percentComplete ) : void
operation string
percentComplete int
return void