STTech.BytesIO.Quic
3.0.2-beta0324
This is a prerelease version of STTech.BytesIO.Quic.
dotnet add package STTech.BytesIO.Quic --version 3.0.2-beta0324
NuGet\Install-Package STTech.BytesIO.Quic -Version 3.0.2-beta0324
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="STTech.BytesIO.Quic" Version="3.0.2-beta0324" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="STTech.BytesIO.Quic" Version="3.0.2-beta0324" />
<PackageReference Include="STTech.BytesIO.Quic" />
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 STTech.BytesIO.Quic --version 3.0.2-beta0324
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: STTech.BytesIO.Quic, 3.0.2-beta0324"
#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 STTech.BytesIO.Quic@3.0.2-beta0324
#: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=STTech.BytesIO.Quic&version=3.0.2-beta0324&prerelease
#tool nuget:?package=STTech.BytesIO.Quic&version=3.0.2-beta0324&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
STTech.BytesIO.Quic
这是一基于 QUIC 协议的高性能 .NET 字节流通信库,作为 STTech.BytesIO 的扩展库,提供了统一的编程模型。
特性
- 统一架构:继承自
BytesClient和BytesServer,与 TCP/串口/IPC 具有一致的 API 调用体验。 - .NET 原生支持:基于
System.Net.Quic实现,充分利用 .NET 8+ 的性能优化。 - 自动证书管理:内置自签名证书生成器,支持开发环境下的零配置启动。
- 高性能:QUIC 协议原生支持加密(TLS 1.3)和多流并发,减少握手延迟并避免队头阻塞。
安装
dotnet add package STTech.BytesIO.Quic
快速开始
QuicClient (客户端)
using STTech.BytesIO.Quic;
var client = new QuicClient { Host = "127.0.0.1", Port = 443 };
client.OnDataReceived += (s, e) => Console.WriteLine($"收到数据: {e.Data.ToHexString()}");
await client.ConnectAsync();
await client.SendAsync("Hello QUIC".GetBytes());
QuicServer (服务端)
using STTech.BytesIO.Quic;
var server = new QuicServer { Port = 443 };
server.ClientConnected += (s, e) => Console.WriteLine($"客户端已连接: {e.Client.ConnectionId}");
await server.StartAsync();
项目地址
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- STTech.BytesIO (>= 3.0.2-beta0324)
-
net8.0
- STTech.BytesIO (>= 3.0.2-beta0324)
-
net9.0
- STTech.BytesIO (>= 3.0.2-beta0324)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 3.0.2-beta0324 | 39 | 3/23/2026 |