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
Received callback method
Called when there is data to be received.
Syntax
- Basic
object.Received (Owner, ByteCount)
The Received(object,Owner,ByteCount) syntax has these parts:
The Received(object,Owner,ByteCount) syntax has these parts:
object | An expression evaluating to an object of type IwodTelnetNotify |
Owner | An expression evaluating to an object of type wodTelnetDLX |
ByteCount | An Integer value. Total number of bytes waiting to be read by your program. |
Remarks
NOTE: This method is called only if you implemented IwodTelnetNotify interface in your application, and wodTelnet.Notification property has received reference to instance of your implementation.Received notification method will be called each time there is data to be read by your program using Receive method. ByteCount argument will hold maximum number you should use with Receive method once you decide to read the data.
You do not have to call Receive method immediately. However, Received notification method will not be called again until you don't Receive data that is currently held in wodTelnetDLX'es internal buffers.