![]() |
VOOZH | about |
dotnet add package IceRpc.Transports.Quic --version 0.5.2
NuGet\Install-Package IceRpc.Transports.Quic -Version 0.5.2
<PackageReference Include="IceRpc.Transports.Quic" Version="0.5.2" />
<PackageVersion Include="IceRpc.Transports.Quic" Version="0.5.2" />Directory.Packages.props
<PackageReference Include="IceRpc.Transports.Quic" />Project file
paket add IceRpc.Transports.Quic --version 0.5.2
#r "nuget: IceRpc.Transports.Quic, 0.5.2"
#:package IceRpc.Transports.Quic@0.5.2
#addin nuget:?package=IceRpc.Transports.Quic&version=0.5.2Install as a Cake Addin
#tool nuget:?package=IceRpc.Transports.Quic&version=0.5.2Install as a Cake Tool
IceRpc.Transports.Quic allows you to use QUIC with IceRPC. It's a thin layer over
System.Net.Quic.
QUIC is a new UDP-based multiplexed transport used by HTTP/3 and several other application protocols.
Source code | Package | Example | API reference | Product documentation
// Create an IceRPC client connection with QUIC
using IceRpc;
using IceRpc.Transports.Quic;
using System.Net.Security;
await using var connection = new ClientConnection(
new Uri("icerpc://localhost"),
new SslClientAuthenticationOptions { ... },
multiplexedClientTransport: new QuicClientTransport());
// Create an IceRPC server with QUIC
using IceRpc;
using IceRpc.Transports.Quic;
using System.Net.Security;
IDispatcher dispatcher = ...;
await using var server = new Server(
dispatcher,
new SslServerAuthenticationOptions { ... },
multiplexedServerTransport: new QuicServerTransport());
server.Listen();
IceRpc.Transports.Quic has the same platform requirements as System.Net.Quic. Microsoft documents these requirements
as the HTTP/3 platform dependencies.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.