Dropbox .NET SDK
Show / Hide Table of Contents

Class RevokeDesktopClientArg

The revoke desktop client arg object

Inheritance
object
DeviceSessionArg
RevokeDesktopClientArg
Inherited Members
DeviceSessionArg.SessionId
DeviceSessionArg.TeamMemberId
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 RevokeDesktopClientArg : DeviceSessionArg

Constructors

View Source

RevokeDesktopClientArg(string, string, bool)

Initializes a new instance of the RevokeDesktopClientArg class.

Declaration
public RevokeDesktopClientArg(string sessionId, string teamMemberId, bool deleteOnUnlink = false)
Parameters
Type Name Description
string sessionId

The session id.

string teamMemberId

The unique id of the member owning the device.

bool deleteOnUnlink

Whether to delete all files of the account (this is possible only if supported by the desktop client and will be made the next time the client access the account).

Properties

View Source

DeleteOnUnlink

Whether to delete all files of the account (this is possible only if supported by the desktop client and will be made the next time the client access the account).

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