Dropbox .NET SDK
Show / Hide Table of Contents

Class SyncSettingArg

The sync setting arg object

Inheritance
object
SyncSettingArg
SyncSettingArg.Default
SyncSettingArg.NotSynced
SyncSettingArg.Other
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 SyncSettingArg

Constructors

View Source

SyncSettingArg()

Initializes a new instance of the SyncSettingArg class.

Declaration
public SyncSettingArg()

Properties

View Source

AsDefault

Gets this instance as a Default, or null.

Declaration
public SyncSettingArg.Default AsDefault { get; }
Property Value
Type Description
SyncSettingArg.Default
View Source

AsNotSynced

Gets this instance as a NotSynced, or null.

Declaration
public SyncSettingArg.NotSynced AsNotSynced { get; }
Property Value
Type Description
SyncSettingArg.NotSynced
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public SyncSettingArg.Other AsOther { get; }
Property Value
Type Description
SyncSettingArg.Other
View Source

IsDefault

Gets a value indicating whether this instance is Default

Declaration
public bool IsDefault { get; }
Property Value
Type Description
bool
View Source

IsNotSynced

Gets a value indicating whether this instance is NotSynced

Declaration
public bool IsNotSynced { get; }
Property Value
Type Description
bool
View Source

IsOther

Gets a value indicating whether this instance is Other

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