Dropbox .NET SDK

Class DashConnectorStatus

The status of the Connector

Inheritance
object
DashConnectorStatus
DashConnectorStatus.Fail
DashConnectorStatus.Other
DashConnectorStatus.Success
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class DashConnectorStatus

Constructors

View Source

DashConnectorStatus()

Initializes a new instance of the DashConnectorStatus class.

Declaration
public DashConnectorStatus()

Properties

View Source

AsFail

Gets this instance as a Fail, or null.

Declaration
public DashConnectorStatus.Fail AsFail { get; }
Property Value
Type Description
DashConnectorStatus.Fail
View Source

AsOther

Gets this instance as a Other, or null.

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

AsSuccess

Gets this instance as a Success, or null.

Declaration
public DashConnectorStatus.Success AsSuccess { get; }
Property Value
Type Description
DashConnectorStatus.Success
View Source

IsFail

Gets a value indicating whether this instance is Fail

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

IsSuccess

Gets a value indicating whether this instance is Success

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