Success

Success()

Creates a successful result without content. Used when the output was written to a stream or file.

public static ConvertResult Success()

Return Value

A ConvertResult with IsSuccess set to true and Content set to null.

See Also


Success(string)

Creates a successful result containing the converted Markdown content.

public static ConvertResult Success(string content)
Parameter Type Description
content String The Markdown content produced by the conversion.

Return Value

A ConvertResult with IsSuccess set to true and the specified content.

See Also