C# Class OnlineVideos.Sites.WebAutomation.BrowserHost.RemoteHandling.RemoteProcessing

Handle remote messgae processing
显示文件 Open project: offbyoneBB/mp-onlinevideos2

Public Properties

Property Type Description
ActionReceived Action

Public Methods

Method Description
InitHandlers ( ) : void

Initialise the remote handlers

ProcessKeyPress ( int keyPressed ) : void

Process key press events

ProcessWndProc ( Message msg ) : bool

Some of the WNDProc messages we'll actually respond to - I've taken this list from the remote implementations I want to filter the messages to reduce the amount of processing overhead

RemoteProcessing ( ILog logger ) : OnlineVideos.Helpers

CTor

Private Methods

Method Description
handler_ActionReceived ( string action ) : void

When an action is received from one of the handlers we'll raise the event

Method Details

InitHandlers() public method

Initialise the remote handlers
public InitHandlers ( ) : void
return void

ProcessKeyPress() public method

Process key press events
public ProcessKeyPress ( int keyPressed ) : void
keyPressed int
return void

ProcessWndProc() public method

Some of the WNDProc messages we'll actually respond to - I've taken this list from the remote implementations I want to filter the messages to reduce the amount of processing overhead
public ProcessWndProc ( Message msg ) : bool
msg System.Windows.Forms.Message
return bool

RemoteProcessing() public method

CTor
public RemoteProcessing ( ILog logger ) : OnlineVideos.Helpers
logger ILog
return OnlineVideos.Helpers

Property Details

ActionReceived public_oe property

public Action ActionReceived
return Action