Enum ConversionLossKind
- Namespace
- DocToolkit
- Assembly
- DocToolkit.Primitives.dll
How badly a conversion lost something.
public enum ConversionLossKind
Fields
Approximation = 1The content survived, but not exactly — a style or layout was approximated.
Failure = 3Something could not be converted at all. The call still returned, so the output is usable; this says part of it is missing rather than that the conversion failed. A conversion that fails outright throws DocumentConversionException instead.
None = 0Reported for information; nothing was lost.
Omission = 2Content the target format cannot express was left out.
Remarks
DocToolkit's own enum rather than the one the underlying converter uses. Re-exporting an upstream enum would put a type this library does not control into its permanent public surface, so an upstream major that renamed a member would become a breaking change for every consumer here.