Back to product page
- Introduction
- License agreement
- Getting Started
- Enumerations
- Objects
- wodTelnetDLX
- Methods
- Properties
- Authentication
- AutoSize
- BackColor
- BackLog
- BindIP
- BindPort
- Blocking
- BorderVisible
- Certificate
- CharEncoding
- Column
- Columns
- ColWidth
- Command
- ContextMenu
- CursorHeight
- DataOut
- DataReady
- Enabled
- ErrorText
- ExitSignal
- ExitStatus
- Font
- ForeColor
- HandleSysKeys
- Hostname
- hWnd
- KeepAlives
- Language
- LastError
- LocalCertBag
- Login
- MousePointer
- MouseWheel
- MyHostname
- MyIP
- Notification
- Password
- Picture
- Port
- Prompt
- Protocol
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- RecordMode
- RemoteIdentification
- Row
- RowHeight
- Rows
- ScrollBars
- ScrollX
- ScrollY
- SecureMethod
- SelectedText
- ShowCursor
- Socket
- SpecialKeyFocus
- State
- StateText
- StripANSI
- StripColors
- TabStop
- TelnetOption
- TerminalEmulation
- TerminalType
- Text
- Timeout
- TranslateSpecial
- UseIPv6
- Version
- Events
- IwodTelnetNotify
- wodTelnetDLX
- How to get support?
- Technical information
- Fast notifications interface
- Error list
TelnetOption property
Specifies telnet negotiation options.
Type
TelnetOptionsEnum enumerationSyntax
- Basic
object.TelnetOption (Index)
The TelnetOption(object,Index,value) syntax has these parts:
The TelnetOption(object,Index,value) syntax has these parts:
object | An expression evaluating to an object of type wodTelnetDLX |
Index | An Integer value. Specifies index of the telnet negotiation option to be set/retrieved.. |
value | Combination of TelnetOptionsEnum enumeration values |
Remarks
This property is used only in TELNET protocol, to determine which telnet negotiation options are sent to the server, and how they are negotiated. You can force wodTelnetDLX to answer certain negotiation options differently than it would internally do - if server implementation requires so.You should only use this property if you know what you're doing. As example, to disable SUPPRESS_GO_AHEAD option (ID #3) you would use code like this:
Telnet1.TelnetOption(3) = TeloptDONT + TeloptWONT
if you set Telnet1.TelnetOption(3) = 0 then wodTelnetDLX will not send initial sequence at all (by default it sends SUPPRESS_GO_AHEAD and ECHO options upon establishing connection.