API Reference
Class
MarkdownRoundtripResult
Result of a markdown roundtrip write attempt.
Inheritance
- Object
- MarkdownRoundtripResult
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
Constructors
public MarkdownRoundtripResult(String markdown, IReadOnlyList<MarkdownRoundtripDiagnostic> diagnostics = null) #Creates a roundtrip result.
Parameters
- markdown System.String
- diagnostics System.Collections.Generic.IReadOnlyList{OfficeIMO.Markdown.MarkdownRoundtripDiagnostic} = null
Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object
Properties
public String Markdown { get; } #The emitted markdown.
public IReadOnlyList<MarkdownRoundtripDiagnostic> Diagnostics { get; } #Diagnostics describing any fallback from lossless source preservation.
public Boolean IsLossless { get; } #True when the writer preserved the original source without fallbacks.