Determines which sequence is sent by the and SendBreak(Int32) method.
Namespace:
Rebex.TerminalEmulation
Assembly:
Rebex.Terminal (in Rebex.Terminal.dll)
Syntax
Visual Basic |
---|
Public Enumeration BreakSequence |
C# |
---|
public enum BreakSequence |
Members
Member name | Description | |
---|---|---|
Default |
Default behavior of the used protocol.
| |
TelnetBreakCommand |
The Telnet Command Break (0xFF 0xF3) is sent. This is default for Telnet. | |
TelnetBreakCode |
The Telnet Break Code (0x81) is sent.
| |
SshBreakCommand |
The SSH Break command is sent. This is default for SSH. | |
ControlC |
The sequence equivalent to CTRL+C (0x03 - End of Text) is sent.
| |
ControlX |
The sequence equivalent to CTRL+X (0x18 - Cancel) is sent.
| |
ControlZ |
The sequence equivalent to CTRL+Z (0x1A - Substitute) is sent.
|