Dropbox .NET SDK
Show / Hide Table of Contents

Class PaperDocUpdateArgs

The paper doc update args object

Inheritance
object
RefPaperDoc
PaperDocUpdateArgs
Inherited Members
RefPaperDoc.DocId
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 PaperDocUpdateArgs : RefPaperDoc

Constructors

View Source

PaperDocUpdateArgs(string, PaperDocUpdatePolicy, long, ImportFormat)

Initializes a new instance of the PaperDocUpdateArgs class.

Declaration
public PaperDocUpdateArgs(string docId, PaperDocUpdatePolicy docUpdatePolicy, long revision, ImportFormat importFormat)
Parameters
Type Name Description
string docId

The Paper doc ID.

PaperDocUpdatePolicy docUpdatePolicy

The policy used for the current update call.

long revision

The latest doc revision. This value must match the head revision or an error code will be returned. This is to prevent colliding writes.

ImportFormat importFormat

The format of provided data.

Properties

View Source

DocUpdatePolicy

The policy used for the current update call.

Declaration
public PaperDocUpdatePolicy DocUpdatePolicy { get; protected set; }
Property Value
Type Description
PaperDocUpdatePolicy
View Source

ImportFormat

The format of provided data.

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

Revision

The latest doc revision. This value must match the head revision or an error code will be returned. This is to prevent colliding writes.

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