PowerShellHtmlConsole.PSRemoteRawUserInterface.SetBufferContents C# (CSharp) Method

SetBufferContents() public method

Copies a given character to a region of the screen buffer based on the coordinates of the region. This method is not implemented. The call fails with an exception.
public SetBufferContents ( System.Management.Automation.Host.Coordinates origin, System.Management.Automation.Host.BufferCell contents ) : void
origin System.Management.Automation.Host.Coordinates The coordnates of the region.
contents System.Management.Automation.Host.BufferCell A BufferCell structure that defines the fill character.
return void
        public override void SetBufferContents(Coordinates origin, BufferCell[,] contents)
        {
            throw new NotImplementedException("The SetBufferContents() method is not implemented by MyRawUserInterface.");
        }

Same methods

PSRemoteRawUserInterface::SetBufferContents ( System.Management.Automation.Host.Rectangle rectangle, System.Management.Automation.Host.BufferCell fill ) : void