Dropbox .NET SDK
Show / Hide Table of Contents

Class GetMarkdownArgs

Arguments for the asynchronous `get_markdown_async` route. Exactly one of `file_id`, `path`, or `url` must be supplied via `file_id_or_url` to identify the document to convert to markdown.

Inheritance
object
GetMarkdownArgs
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public class GetMarkdownArgs

Constructors

View Source

GetMarkdownArgs(FileIdOrUrl, bool, bool)

Declaration
public GetMarkdownArgs(FileIdOrUrl fileIdOrUrl = null, bool enableOcr = false, bool embedImages = false)
Parameters
Type Name Description
FileIdOrUrl fileIdOrUrl
bool enableOcr
bool embedImages

Properties

View Source

EmbedImages

When true, embed images as base64 data URIs in the markdown output. This can significantly increase output size.

Declaration
public bool EmbedImages { get; protected set; }
Property Value
Type Description
bool
View Source

EnableOcr

Enable OCR for PDF documents. Processing is slower when enabled.

Declaration
public bool EnableOcr { get; protected set; }
Property Value
Type Description
bool
View Source

FileIdOrUrl

Declaration
public FileIdOrUrl FileIdOrUrl { get; protected set; }
Property Value
Type Description
FileIdOrUrl
  • View Source
In this article
Back to top Dropbox .NET SDK