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
CodestringA short stable identifier from the underlying converter, for grouping.
MessagestringA human-readable sentence describing what happened.
KindConversionLossKindHow severe the loss was.
Properties
Code
A short stable identifier from the underlying converter, for grouping.
public string Code { get; init; }
Property Value
Kind
How severe the loss was.
public ConversionLossKind Kind { get; init; }
Property Value
Message
A human-readable sentence describing what happened.
public string Message { get; init; }