Class MemberDevices
Information on devices of a team's member.
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class MemberDevices
Constructors
View SourceMemberDevices(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 SourceDesktopClients
List of desktop clients by this team member.
Declaration
public IList<DesktopClientSession> DesktopClients { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<DesktopClientSession> |
MobileClients
List of mobile clients by this team member.
Declaration
public IList<MobileClientSession> MobileClients { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<MobileClientSession> |
TeamMemberId
The member unique Id.
Declaration
public string TeamMemberId { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
WebSessions
List of web sessions made by this team member.
Declaration
public IList<ActiveWebSession> WebSessions { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<ActiveWebSession> |