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" />
                    
Directory.Packages.props
<PackageReference Include="Incursa.Qlog.Quic" />
                    
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 Incursa.Qlog.Quic --version 1.1.3
                    
#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
                    
Install as a Cake Addin
#tool nuget:?package=Incursa.Qlog.Quic&version=1.1.3
                    
Install as a Cake Tool

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.Qlog for 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 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.

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.

Version Downloads Last Updated
1.1.3 270 5/15/2026
1.1.1 103 5/14/2026
1.1.0 106 4/17/2026
1.0.6 4,208 4/15/2026