Dropbox .NET SDK

Class DeviceUnlinkDetails

Disconnected device.

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

Constructors

View Source

DeviceUnlinkDetails(bool, SessionLogInfo, string)

Initializes a new instance of the DeviceUnlinkDetails class.

Declaration
public DeviceUnlinkDetails(bool deleteData, SessionLogInfo sessionInfo = null, string displayName = null)
Parameters
Type Name Description
bool deleteData

True if the user requested to delete data after device unlink, false otherwise.

SessionLogInfo sessionInfo

Session unique id.

string displayName

The device name. Might be missing due to historical data gap.

Properties

View Source

DeleteData

True if the user requested to delete data after device unlink, false otherwise.

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

DisplayName

The device name. Might be missing due to historical data gap.

Declaration
public string DisplayName { get; protected set; }
Property Value
Type Description
string
View Source

SessionInfo

Session unique id.

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