Table of Contents

Struct TimingBreakdown

Namespace
NetPdf
Assembly
NetPdf.dll

Per-stage wall-clock timings. Total is the end-to-end conversion time; the per-stage values sum to roughly that minus parallelism overlaps.

public readonly record struct TimingBreakdown : IEquatable<TimingBreakdown>
Implements
Inherited Members

Constructors

TimingBreakdown(TimeSpan, TimeSpan, TimeSpan, TimeSpan, TimeSpan, TimeSpan, TimeSpan, TimeSpan)

Per-stage wall-clock timings. Total is the end-to-end conversion time; the per-stage values sum to roughly that minus parallelism overlaps.

public TimingBreakdown(TimeSpan Parse, TimeSpan Style, TimeSpan BoxGeneration, TimeSpan Layout, TimeSpan Pagination, TimeSpan Paint, TimeSpan Emit, TimeSpan Total)

Parameters

Parse TimeSpan
Style TimeSpan
BoxGeneration TimeSpan
Layout TimeSpan
Pagination TimeSpan
Paint TimeSpan
Emit TimeSpan
Total TimeSpan

Properties

BoxGeneration

public TimeSpan BoxGeneration { get; init; }

Property Value

TimeSpan

Emit

public TimeSpan Emit { get; init; }

Property Value

TimeSpan

Layout

public TimeSpan Layout { get; init; }

Property Value

TimeSpan

Pagination

public TimeSpan Pagination { get; init; }

Property Value

TimeSpan

Paint

public TimeSpan Paint { get; init; }

Property Value

TimeSpan

Parse

public TimeSpan Parse { get; init; }

Property Value

TimeSpan

Style

public TimeSpan Style { get; init; }

Property Value

TimeSpan

Total

public TimeSpan Total { get; init; }

Property Value

TimeSpan