Write line of data to TelnetOutputStream with escaping IAC terminated with specified line terminator.

Namespace: Jscape.Telnet
Assembly: Jscape.Telnet (in Jscape.Telnet.dll) Version: 2.6.1.0

Syntax

C#
public void PrintLn(
	string line,
	string terminator,
	bool together
)
Visual Basic
Public Sub PrintLn ( _
	line As String, _
	terminator As String, _
	together As Boolean _
)
Visual C++
public:
void PrintLn(
	String^ line, 
	String^ terminator, 
	bool together
)

Parameters

line
Type: System..::..String
The data to write.
terminator
Type: System..::..String
The line terminator.
together
Type: System..::..Boolean
true to sends both the command and the line terminator at same time; otherwise, false.

See Also