Table of Contents

Class ConversionWarning

Namespace
DocToolkit
Assembly
DocToolkit.Primitives.dll

One thing a conversion could not carry across faithfully.

public sealed record ConversionWarning : IEquatable<ConversionWarning>
Inheritance
ConversionWarning
Implements
Inherited Members

Constructors

ConversionWarning(string, string, ConversionLossKind)

One thing a conversion could not carry across faithfully.

public ConversionWarning(string Code, string Message, ConversionLossKind Kind)

Parameters

Code string

A short stable identifier from the underlying converter, for grouping.

Message string

A human-readable sentence describing what happened.

Kind ConversionLossKind

How severe the loss was.

Properties

Code

A short stable identifier from the underlying converter, for grouping.

public string Code { get; init; }

Property Value

string

Kind

How severe the loss was.

public ConversionLossKind Kind { get; init; }

Property Value

ConversionLossKind

Message

A human-readable sentence describing what happened.

public string Message { get; init; }

Property Value

string