PowerShellHtmlConsole.PSRemoteRawUserInterface.ReadKey C# (CSharp) Method

ReadKey() public method

Reads a pressed, released, or pressed and released keystroke from the keyboard device, blocking processing until a keystroke is typed that matches the specified keystroke options. This functionality is not implemented. The call fails with an exception.
public ReadKey ( ReadKeyOptions options ) : System.Management.Automation.Host.KeyInfo
options ReadKeyOptions A bit mask of the options to be used when /// reading from the keyboard.
return System.Management.Automation.Host.KeyInfo
        public override KeyInfo ReadKey(ReadKeyOptions options)
        {
            throw new NotImplementedException("The ReadKey() method is not implemented by MyRawUserInterface.");
        }