Dropbox .NET SDK
Show / Hide Table of Contents

Class PaperCreateResult

The paper create result object

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

Constructors

View Source

PaperCreateResult(string, string, string, long)

Initializes a new instance of the PaperCreateResult class.

Declaration
public PaperCreateResult(string url, string resultPath, string fileId, long paperRevision)
Parameters
Type Name Description
string url

URL to open the Paper Doc.

string resultPath

The fully qualified path the Paper Doc was actually created at.

string fileId

The id to use in Dropbox APIs when referencing the Paper Doc.

long paperRevision

The current doc revision.

Properties

View Source

FileId

The id to use in Dropbox APIs when referencing the Paper Doc.

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

PaperRevision

The current doc revision.

Declaration
public long PaperRevision { get; protected set; }
Property Value
Type Description
long
View Source

ResultPath

The fully qualified path the Paper Doc was actually created at.

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

Url

URL to open the Paper Doc.

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