This class represents a serial transport mechanism. Its primary reason for existing is to provide an abstraction above Socket for use by the Telnet class, since the telnet protocol does not strictly require sockets as its transport mechanism. For instance, it is theoretically possible to conduct a Telnet session over HTTP, a pipe, or even smoke signals -- provided an encoding of characters 0-255.
This abstract class only provides two methods, Send and Receive. We do not presume characteristics of the relationship between the sender and the receiver such as client/server, peer-to-peer, out/in process, or threading. It is expected that derived classes will add members to establish connections and control options.
Words in italics indicate an instance of a class. The word corresponds to the class name, except where more than one instance is represented in the same statement. In that case a number (2, 3, etc.) is appended to the class name.
Words in normal typeface are to be taken literally (required punctuation, class name in a static reference, method name, etc.)
The symbol => is used to separate an expression (on the left) from its return value (on the right).
An ellipsis (...) indicates that the previous argument may be repeated any number of times. The description will indicate whether one instance is required.
transport.Receive(a) => i
transport.Send(a) => boolean