Reflection .NET API
Attachmate.Reflection.Emulation.OpenSystems Assembly / Attachmate.Reflection.Emulation.OpenSystems Namespace / IConnectionSettingsTelnet Interface / TelnetLineMode Property


In This Topic
TelnetLineMode Property (IConnectionSettingsTelnet)
In This Topic
Line mode and faux line mode for Telnet connections are supported.
Syntax
'Declaration
 
Property TelnetLineMode As TelnetLineModeOption
 
'Usage
 
Dim instance As IConnectionSettingsTelnet
Dim value As TelnetLineModeOption
 
instance.TelnetLineMode = value
 
value = instance.TelnetLineMode
Remarks
Line mode allows Reflection to store characters in a buffer until a carriage return is entered. Then, characters are sent to the host one packet at a time (instead of sending each character as an individual packet).

Line mode is useful for long network delays and may reduce costs on networks that charge on a per packet basis. The default value is Never.

This value cannot be changed if the connection is open.
See Also