Dropbox .NET SDK
Show / Hide Table of Contents

Class RevokeLinkedAppStatus

The revoke linked app status object

Inheritance
object
RevokeLinkedAppStatus
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 RevokeLinkedAppStatus

Constructors

View Source

RevokeLinkedAppStatus(bool, RevokeLinkedAppError)

Initializes a new instance of the RevokeLinkedAppStatus class.

Declaration
public RevokeLinkedAppStatus(bool success, RevokeLinkedAppError errorType = null)
Parameters
Type Name Description
bool success

Result of the revoking request.

RevokeLinkedAppError errorType

The error cause in case of a failure.

Properties

View Source

ErrorType

The error cause in case of a failure.

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

Success

Result of the revoking request.

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