Dropbox .NET SDK
Show / Hide Table of Contents

Class SyncSetting

The sync setting object

Inheritance
object
SyncSetting
SyncSetting.Default
SyncSetting.NotSynced
SyncSetting.NotSyncedInactive
SyncSetting.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 SyncSetting

Constructors

View Source

SyncSetting()

Initializes a new instance of the SyncSetting class.

Declaration
public SyncSetting()

Properties

View Source

AsDefault

Gets this instance as a Default, or null.

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

AsNotSynced

Gets this instance as a NotSynced, or null.

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

AsNotSyncedInactive

Gets this instance as a NotSyncedInactive, or null.

Declaration
public SyncSetting.NotSyncedInactive AsNotSyncedInactive { get; }
Property Value
Type Description
SyncSetting.NotSyncedInactive
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public SyncSetting.Other AsOther { get; }
Property Value
Type Description
SyncSetting.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

IsNotSyncedInactive

Gets a value indicating whether this instance is NotSyncedInactive

Declaration
public bool IsNotSyncedInactive { 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