Computer.Ports 属性

定义

获取一个对象,该对象提供用于访问计算机的串行端口的属性和方法。

public:
 property Microsoft::VisualBasic::Devices::Ports ^ Ports { Microsoft::VisualBasic::Devices::Ports ^ get(); };
public Microsoft.VisualBasic.Devices.Ports Ports { get; }
member this.Ports : Microsoft.VisualBasic.Devices.Ports
Public ReadOnly Property Ports As Ports

属性值

My.Computer.Ports 对象。

示例

此示例介绍如何将字符串发送到计算机的 COM1 串行端口。

Using 块允许应用程序在即使会生成异常的情况下也关闭串行端口。 操作串行端口的所有代码都应出现在此块中,或者通过调用 来使用 Close 方法的块内Try...Catch...Finally显示。

WriteLine 方法将数据发送到串行端口。

Sub SendSerialData(ByVal data As String)
    ' Send strings to a serial port.
    Using com1 As IO.Ports.SerialPort = 
            My.Computer.Ports.OpenSerialPort("COM1")
        com1.WriteLine(data)
    End Using
End Sub

有关详细信息,请参阅 如何:将字符串发送到串行端口

注解

此属性提供对 My.Computer.Ports 对象的轻松访问。 有关详细信息,请参阅 Ports 对象。

可用性(按项目类型)

项目类型 可用
Windows 窗体应用程序
类库
控制台应用程序
Windows 窗体控件库
Web 控件库
Windows 服务
网站

适用于

另请参阅