Dropbox .NET SDK
Show / Hide Table of Contents

Class MemberDevices

Information on devices of a team's member.

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

Constructors

View Source

MemberDevices(string, IEnumerable<ActiveWebSession>, IEnumerable<DesktopClientSession>, IEnumerable<MobileClientSession>)

Initializes a new instance of the MemberDevices class.

Declaration
public MemberDevices(string teamMemberId, IEnumerable<ActiveWebSession> webSessions = null, IEnumerable<DesktopClientSession> desktopClients = null, IEnumerable<MobileClientSession> mobileClients = null)
Parameters
Type Name Description
string teamMemberId

The member unique Id.

IEnumerable<ActiveWebSession> webSessions

List of web sessions made by this team member.

IEnumerable<DesktopClientSession> desktopClients

List of desktop clients by this team member.

IEnumerable<MobileClientSession> mobileClients

List of mobile clients by this team member.

Properties

View Source

DesktopClients

List of desktop clients by this team member.

Declaration
public IList<DesktopClientSession> DesktopClients { get; protected set; }
Property Value
Type Description
IList<DesktopClientSession>
View Source

MobileClients

List of mobile clients by this team member.

Declaration
public IList<MobileClientSession> MobileClients { get; protected set; }
Property Value
Type Description
IList<MobileClientSession>
View Source

TeamMemberId

The member unique Id.

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

WebSessions

List of web sessions made by this team member.

Declaration
public IList<ActiveWebSession> WebSessions { get; protected set; }
Property Value
Type Description
IList<ActiveWebSession>
  • View Source
In this article
Back to top Dropbox .NET SDK