.NET SDK - OutboundStream.Input

OutboundStream.Input event

Raised when an input (keyboard, mouse, gamepad...) is received from a remote device, before we've processed the input. Only input attempts enabled by the stream's InputLevel cause these events.

public event EventHandler<OutboundStream, InputEvent> Input;

Remarks

You can listen to this event and call Discard to cancel input processing.

See Also