Incursa.Qlog.Quic
1.1.3
Prefix Reserved
dotnet add package Incursa.Qlog.Quic --version 1.1.3
NuGet\Install-Package Incursa.Qlog.Quic -Version 1.1.3
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="Incursa.Qlog.Quic" Version="1.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Incursa.Qlog.Quic" Version="1.1.3" />
<PackageReference Include="Incursa.Qlog.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 Incursa.Qlog.Quic --version 1.1.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Incursa.Qlog.Quic, 1.1.3"
#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 Incursa.Qlog.Quic@1.1.3
#: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=Incursa.Qlog.Quic&version=1.1.3
#tool nuget:?package=Incursa.Qlog.Quic&version=1.1.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Incursa.Qlog.Quic
Incursa.Qlog.Quic is the bounded QUIC vocabulary package that builds on Incursa.Qlog.
Install
dotnet add package Incursa.Qlog.Quic
What It Covers
- draft QUIC schema registration for qlog traces
- qlog event schema metadata for the recorded draft QUIC event definitions
- bounded QUIC event builders for lifecycle, negotiation, packet activity, stream movement, and recovery
- bounded payload types for the QUIC slices already implemented in this repository
Minimal Example
using Incursa.Qlog;
using Incursa.Qlog.Quic;
using Incursa.Qlog.Serialization.Json;
QlogTrace trace = new()
{
Title = "client-handshake",
};
QlogQuicEvents.RegisterDraftSchema(trace);
trace.Events.Add(QlogQuicEvents.CreateConnectionStarted(
0,
new QuicConnectionStarted
{
Local = new QuicTupleEndpointInfo
{
IpV4 = "203.0.113.10",
PortV4 = 443,
},
Remote = new QuicTupleEndpointInfo
{
IpV4 = "198.51.100.20",
PortV4 = 443,
},
}));
trace.Events.Add(QlogQuicEvents.CreateConnectionStateUpdated(
1,
new QuicConnectionStateUpdated
{
New = QlogQuicKnownValues.ConnectionStateHandshakeStarted,
}));
QlogFile file = new();
file.Traces.Add(trace);
string json = QlogJsonSerializer.Serialize(file, indented: true);
Notes
- The package depends on
Incursa.Qlogfor the core qlog model, contained JSON serializer, and generic value infrastructure. - The package surface is intentionally bounded to the implemented QUIC event families in this repository.
- Repository details and scope notes live at
https://github.com/incursa/qlog-dotnet.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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
- Incursa.Qlog (>= 1.1.3)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Incursa.Qlog.Quic:
| Package | Downloads |
|---|---|
|
Incursa.Quic.Diagnostics.Qlog
QUIC diagnostics-to-qlog adapter for Incursa.Quic. |
GitHub repositories
This package is not used by any popular GitHub repositories.