Dropbox .NET SDK
Show / Hide Table of Contents

Class RemovedStatus

The removed status object

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

Constructors

View Source

RemovedStatus(bool, bool)

Initializes a new instance of the RemovedStatus class.

Declaration
public RemovedStatus(bool isRecoverable, bool isDisconnected)
Parameters
Type Name Description
bool isRecoverable

True if the removed team member is recoverable.

bool isDisconnected

True if the team member's account was converted to individual account.

Properties

View Source

IsDisconnected

True if the team member's account was converted to individual account.

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

IsRecoverable

True if the removed team member is recoverable.

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