runtime.linux-arm64.runtime.native.System.IO.Ports 10.0.12

Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package runtime.linux-arm64.runtime.native.System.IO.Ports --version 10.0.12
                    
NuGet\Install-Package runtime.linux-arm64.runtime.native.System.IO.Ports -Version 10.0.12
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="runtime.linux-arm64.runtime.native.System.IO.Ports" Version="10.0.12" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="runtime.linux-arm64.runtime.native.System.IO.Ports" Version="10.0.12" />
                    
Directory.Packages.props
<PackageReference Include="runtime.linux-arm64.runtime.native.System.IO.Ports" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add runtime.linux-arm64.runtime.native.System.IO.Ports --version 10.0.12
                    
#r "nuget: runtime.linux-arm64.runtime.native.System.IO.Ports, 10.0.12"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package runtime.linux-arm64.runtime.native.System.IO.Ports@10.0.12
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=runtime.linux-arm64.runtime.native.System.IO.Ports&version=10.0.12
                    
Install as a Cake Addin
#tool nuget:?package=runtime.linux-arm64.runtime.native.System.IO.Ports&version=10.0.12
                    
Install as a Cake Tool

About

System.IO.Ports package provides synchronous serial port file resource. Additionally, the functionality of this class can be wrapped in an internal Stream object, accessible through the BaseStream property, and passed to classes that wrap or use streams.

Key Features

  • synchronous and event-driven I/O
  • access to pin and break states
  • access to serial driver properties
  • access to Stream object through the BaseStream property

How to Use

using System.IO.Ports;

// Provides list of available serial ports
string[] portNames = SerialPort.GetPortNames();

// First available port
string myPortName = portNames[0];
int baudRate = 9600;

SerialPort sp = new SerialPort(myPortName, baudRate);
sp.Open();
sp.WriteLine("Hello World!");

Main Types

The main type provided by this library is:

  • SerialPort

Additional Documentation

Feedback & Contributing

System.IO.Ports is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on runtime.linux-arm64.runtime.native.System.IO.Ports:

Package Downloads
runtime.native.System.IO.Ports

Internal implementation package not meant for direct consumption. Please do not reference directly.

Devolutions.PowerShell.SDK

Runtime for hosting PowerShell

AdalightNet

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
11.0.0-rc.1.26425.128 594 2026/9/8
11.0.0-preview.7.26381.103 4,031 2026/8/11
11.0.0-preview.6.26359.118 6,400 2026/7/14
11.0.0-preview.5.26302.115 3,940 2026/6/9
11.0.0-preview.4.26230.115 4,848 2026/5/12
11.0.0-preview.3.26207.106 8,604 2026/4/14
10.0.12 19,570 2026/9/8
10.0.11 225,981 2026/8/11
10.0.10 431,268 2026/7/14
10.0.9 422,484 2026/6/9
10.0.8 390,496 2026/5/12
10.0.7 391,594 2026/4/21
10.0.6 260,279 2026/4/14
10.0.5 1,023,973 2026/3/12
9.0.20 724 2026/9/8
9.0.19 29,290 2026/8/11
9.0.18 78,951 2026/7/14
9.0.17 33,709 2026/6/9
9.0.16 50,149 2026/5/12
9.0.15 228,671 2026/4/14
Loading failed