Creates a successful result containing the converted Markdown content.
Remarks
All Convert methods throw on failure, so a returned ConvertResult always represents a successful conversion. Use Content to read the Markdown string (when converting to string) and Warnings to check for non-fatal issues.
Examples
usingvarconverter=newMarkdownConverter("report.docx");ConvertResultresult=converter.Convert();// throws on failureConsole.WriteLine(result.Content);// always validforeach(stringwarninginresult.Warnings)Console.WriteLine("Warning: "+warning);