Serial Class Fling OS
A serial pipe wrapper.
Inheritance Hierarchy

System Object
  Kernel.Debug.Debugger Serial

Namespace: Kernel.Debug.Debugger
Assembly: Kernel.Debug.Debugger (in Kernel.Debug.Debugger.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax

public sealed class Serial : IDisposable

The Serial type exposes the following members.

Constructors

  NameDescription
Public methodSerial
Initializes a new instance of the Serial class
Top
Methods

  NameDescription
Private methodBeginRead
Public methodDisconnect
Cleanly disconnects the pipe and terminates reading.
Public methodDispose
Private methodEndRead
Public methodInit
Initialises the named pipe server and waits for a connection
Public methodReadBytes
Reads the specified number of bytes from the pipe.
Public methodWrite(Byte)
Writes a byte to the serial pipe.
Public methodWrite(UInt32)
Writes a UInt32 to the serial pipe.
Public methodWrite(UInt64)
Writes a UInt64 to the serial pipe.
Top
Fields

  NameDescription
Private fieldBytesRead
Private fieldOnConnected
Private fieldreadBuffer
Private fieldThePipe
The underlying pipe.
Top
Properties

  NameDescription
Public propertyConnected
Whether the serial pipe is connected.
Top
Events

  NameDescription
Public eventOnConnected
Fired when the serial pipe gains a connection.
Top
Remarks

Implements IDisposable to cleanly close the pipe connection.
See Also