Dropbox .NET SDK
Show / Hide Table of Contents

Class GetDocMetadataArg

Argument for retrieving Paper doc metadata. Accepts either a legacy Paper doc ID or a Cloud Doc file ID.

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

Constructors

View Source

GetDocMetadataArg(string, string)

Initializes a new instance of the GetDocMetadataArg class.

Declaration
public GetDocMetadataArg(string docId = null, string fileId = null)
Parameters
Type Name Description
string docId

Legacy Paper doc identifier.

string fileId

Dropbox file ID for Cloud Docs (post-PiFS migration).

Properties

View Source

DocId

Legacy Paper doc identifier.

Declaration
public string DocId { get; protected set; }
Property Value
Type Description
string
View Source

FileId

Dropbox file ID for Cloud Docs (post-PiFS migration).

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