SerialPort::BaseStream Property
Gets the underlying Stream object for a SerialPort object.
Assembly: System (in System.dll)
| Exception | Condition |
|---|---|
| InvalidOperationException | The stream is closed. This can occur because the Open method has not been called or the Close method has been called. |
| NotSupportedException | The stream is in a .NET Compact Framework application and one of the following methods was called: The .NET Compact Framework does not support the asynchronous model with base streams. |
Use this property for explicit asynchronous I/O operations or to pass the SerialPort object to a Stream wrapper class such as StreamWriter.
Any open serial port's BaseStream property returns an object that derives from the abstract Stream class, and implements read and write methods using the prototypes inherited from the Stream class: BeginRead, BeginWrite, Read, ReadByte, Write, and WriteByte. These methods can be useful when passing a wrapped serial resource to a Stream wrapper class.
Due to the inaccessibility of the wrapped file handle, the Length and Position properties are not supported, and the Seek and SetLength methods are not supported.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.