PowerArgs.Cli.KeyboardInterceptionManager.PushUnmanaged C# (CSharp) Method

PushUnmanaged() public method

public PushUnmanaged ( ConsoleKey key, ConsoleModifiers modifier, System.Action handler ) : Subscription
key ConsoleKey
modifier ConsoleModifiers
handler System.Action
return Subscription
        public Subscription PushUnmanaged(ConsoleKey key, ConsoleModifiers? modifier, Action handler)
        {
            return PushUnmanaged(key, modifier, (k) => { handler(); });
        }

Same methods

KeyboardInterceptionManager::PushUnmanaged ( ConsoleKey key, ConsoleModifiers modifier, Action handler ) : Subscription