C# Class BasicCommandHandlers.NewSendKeyCommandHandlerPlugin

Inheritance: CommonServices.BasicCommandHandler, ISendKeyCommandHandlerService
Mostra file Open project: Invenietis/ck-certified

Private Properties

Property Type Description
DoSendKeys void

Public Methods

Method Description
SendKey ( object sender, string key ) : void
SendKey ( string key ) : void

Send the key represented using the SendKeys Class. KeySending event is fired, then the key is sent and KeySent event is fired.

Start ( ) : void
Stop ( ) : void

Protected Methods

Method Description
OnCommandSent ( object sender, CommandSentEventArgs e ) : void

Private Methods

Method Description
DoSendKeys ( object sender, string key ) : void

Method Details

OnCommandSent() protected method

protected OnCommandSent ( object sender, CommandSentEventArgs e ) : void
sender object
e CommonServices.CommandSentEventArgs
return void

SendKey() public method

public SendKey ( object sender, string key ) : void
sender object
key string
return void

SendKey() public method

Send the key represented using the SendKeys Class. KeySending event is fired, then the key is sent and KeySent event is fired.
public SendKey ( string key ) : void
key string Representation of a key, using syntax
return void

Start() public method

public Start ( ) : void
return void

Stop() public method

public Stop ( ) : void
return void