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
ParseTimeSpanStyleTimeSpanBoxGenerationTimeSpanLayoutTimeSpanPaginationTimeSpanPaintTimeSpanEmitTimeSpanTotalTimeSpan
Properties
BoxGeneration
public TimeSpan BoxGeneration { get; init; }
Property Value
Emit
public TimeSpan Emit { get; init; }
Property Value
Layout
public TimeSpan Layout { get; init; }
Property Value
Pagination
public TimeSpan Pagination { get; init; }
Property Value
Paint
public TimeSpan Paint { get; init; }
Property Value
Parse
public TimeSpan Parse { get; init; }
Property Value
Style
public TimeSpan Style { get; init; }
Property Value
Total
public TimeSpan Total { get; init; }