Click or drag to resize

DefaultSerialProtocol Class

[Missing <summary> documentation for "T:Brainboxes.IO.DefaultSerialProtocol"]

Inheritance Hierarchy
SystemObject
  Brainboxes.IOProtocol
    Brainboxes.IODefaultSerialProtocol

Namespace:  Brainboxes.IO
Assembly:  Brainboxes.IO (in Brainboxes.IO.dll) Version: 1.5.0.8
Syntax
public class DefaultSerialProtocol : Protocol, 
	ISerialProtocol, IProtocol, ICloneable

The DefaultSerialProtocol type exposes the following members.

Constructors
  NameDescription
Public methodDefaultSerialProtocol
Initializes a new instance of the DefaultSerialProtocol class
Top
Properties
  NameDescription
Public propertyDataAvailable
Whether there is data available, returns 0 for no data and 1 more 1 or more characters
Public propertyEncoding
The character encoding used to send and receive data, default UTF-8, should be a highly compatible option for text based communication protocols including full compatibility with ASCII
Public propertyStream
Set the stream which the protocol data is written and read from
(Inherited from Protocol.)
Public propertyTerminatingCharacters
The character or sequence of characters that define the end of a data transmission, this will be automatically added to the end of sent data and stripped fromcheer the end of a received data The default terminating-character is \n New Line (Linux Standard Line Ending) Note Default Windows line ending is \r\n Carriage Return New Line, which will still work with this default, For better results with Windows line endings change this value to '\r\n'
Top
Methods
  NameDescription
Public methodClone
Make a shallow copy of the DefaultSerialProtocol This means when it is assigned to each port the instance is not shared so each port maintains its own state
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodReceive
Receive data from the serial port decoded in the set encoding Will block until: the timeout is reached in which case an exception is thrown or until the terminating character is found
Public methodSend
Send data down the serial port encoded in the set encoding
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also