Dropbox .NET SDK
Show / Hide Table of Contents

Class DesktopClientSession

Information about linked Dropbox desktop client sessions.

Inheritance
object
DeviceSession
DesktopClientSession
Inherited Members
DeviceSession.SessionId
DeviceSession.IpAddress
DeviceSession.Country
DeviceSession.Created
DeviceSession.Updated
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 DesktopClientSession : DeviceSession

Constructors

View Source

DesktopClientSession(string, string, DesktopPlatform, string, string, bool, string, string, DateTime?, DateTime?)

Initializes a new instance of the DesktopClientSession class.

Declaration
public DesktopClientSession(string sessionId, string hostName, DesktopPlatform clientType, string clientVersion, string platform, bool isDeleteOnUnlinkSupported, string ipAddress = null, string country = null, DateTime? created = null, DateTime? updated = null)
Parameters
Type Name Description
string sessionId

The session id.

string hostName

Name of the hosting desktop.

DesktopPlatform clientType

The Dropbox desktop client type.

string clientVersion

The Dropbox client version.

string platform

Information on the hosting platform.

bool isDeleteOnUnlinkSupported

Whether it's possible to delete all of the account files upon unlinking.

string ipAddress

The IP address of the last activity from this session.

string country

The country from which the last activity from this session was made.

DateTime? created

The time this session was created.

DateTime? updated

The time of the last activity from this session.

Properties

View Source

ClientType

The Dropbox desktop client type.

Declaration
public DesktopPlatform ClientType { get; protected set; }
Property Value
Type Description
DesktopPlatform
View Source

ClientVersion

The Dropbox client version.

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

HostName

Name of the hosting desktop.

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

IsDeleteOnUnlinkSupported

Whether it's possible to delete all of the account files upon unlinking.

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

Platform

Information on the hosting platform.

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