Incursa.Qlog 1.1.3

Prefix Reserved
dotnet add package Incursa.Qlog --version 1.1.3
                    
NuGet\Install-Package Incursa.Qlog -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" 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" Version="1.1.3" />
                    
Directory.Packages.props
<PackageReference Include="Incursa.Qlog" />
                    
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 --version 1.1.3
                    
#r "nuget: Incursa.Qlog, 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@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&version=1.1.3
                    
Install as a Cake Addin
#tool nuget:?package=Incursa.Qlog&version=1.1.3
                    
Install as a Cake Tool

Incursa.Qlog

Incursa.Qlog is the packable core qlog library. It provides the model types, value infrastructure, and JSON serializers that Incursa.Qlog.Quic builds on.

Install

dotnet add package Incursa.Qlog

What It Covers

  • contained qlog JSON envelopes
  • sequential qlog JSON Text Sequences envelopes
  • qlog file, trace, event, reference-time, and vantage-point model types
  • qlog event schema metadata catalogs for authored event definitions
  • round-trippable extension data for unknown members

When To Use Which Serializer

  • Use QlogJsonSerializer for standard contained qlog JSON files with a traces array.
  • Use QlogJsonTextSequenceSerializer for the draft sequential JSON Text Sequences format when you have one trace header record followed by event records.
  • Both serializers expose Serialize(Stream, ...) overloads, so you can write to a file stream, network stream, or memory buffer.

Minimal Example

using System;
using Incursa.Qlog;
using Incursa.Qlog.Serialization.Json;

QlogFile file = new();
QlogTrace trace = new()
{
    Title = "Example trace",
    VantagePoint = new QlogVantagePoint
    {
        Type = QlogKnownValues.ClientVantagePoint,
    },
};

trace.EventSchemas.Add(new Uri("urn:ietf:params:qlog:events:example"));
trace.Events.Add(new QlogEvent
{
    Time = 0,
    Name = "example:connection_started",
});

file.Traces.Add(trace);

string containedJson = QlogJsonSerializer.Serialize(file, indented: true);

QlogFile sequentialFile = new()
{
    FileSchema = QlogKnownValues.SequentialFileSchemaUri,
    SerializationFormat = QlogKnownValues.SequentialJsonTextSequencesSerializationFormat,
};
sequentialFile.Traces.Add(trace);

string jsonTextSequence = QlogJsonTextSequenceSerializer.Serialize(sequentialFile, indented: true);

Notes

  • Unknown file, trace, common-field, vantage-point, reference-time, and event members are preserved through explicit extension data.
  • The core package stays free of QUIC-specific vocabulary; that surface lives in Incursa.Qlog.Quic.
  • The package is intentionally JSON-first: contained JSON and sequential JSON Text Sequences stay in the core package.
  • The first non-JSON encoding now lives in the sibling Incursa.Qlog.Cbor package so binary serializer evolution does not reshape the core JSON surface.
  • 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.
  • net10.0

    • No dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Incursa.Qlog:

Package Downloads
Incursa.Qlog.Quic

Bounded QUIC qlog vocabulary and event builders built on Incursa.Qlog.

Incursa.Qlog.Cbor

Contained qlog CBOR serializer built on Incursa.Qlog.

Incursa.Qlog.Import

Qlog import and rehydration utilities for contained JSON and sequential JSON Text Sequences artifacts.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.3 244 5/15/2026
1.1.1 133 5/14/2026
1.1.0 116 4/17/2026
1.0.6 4,207 4/15/2026