Success

Success()

Creates a successful conversion result without Markdown content.

public static DocumentConverterResult Success()

Return Value

A DocumentConverterResult indicating a successful conversion.

Remarks

This method is typically used when the converted content is written to a stream or file.

See Also


Success(string)

Creates a successful conversion result with Markdown content.

public static DocumentConverterResult Success(string content)
Parameter Type Description
content String The converted Markdown content.

Return Value

A DocumentConverterResult containing the converted Markdown content.

Exceptions

exception condition
ArgumentNullException Thrown when content is null.

See Also