Show / Hide Table of Contents

Class MemberDevices

Information on devices of a team's member.

Inheritance
System.Object
MemberDevices
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class MemberDevices

Constructors

| Improve this Doc 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
System.String teamMemberId

The member unique Id.

System.Collections.Generic.IEnumerable<ActiveWebSession> webSessions

List of web sessions made by this team member.

System.Collections.Generic.IEnumerable<DesktopClientSession> desktopClients

List of desktop clients by this team member.

System.Collections.Generic.IEnumerable<MobileClientSession> mobileClients

List of mobile clients by this team member.

Properties

| Improve this Doc View Source

DesktopClients

List of desktop clients by this team member.

Declaration
public IList<DesktopClientSession> DesktopClients { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<DesktopClientSession>
| Improve this Doc View Source

MobileClients

List of mobile clients by this team member.

Declaration
public IList<MobileClientSession> MobileClients { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<MobileClientSession>
| Improve this Doc View Source

TeamMemberId

The member unique Id.

Declaration
public string TeamMemberId { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

WebSessions

List of web sessions made by this team member.

Declaration
public IList<ActiveWebSession> WebSessions { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<ActiveWebSession>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • MemberDevices(String, IEnumerable<ActiveWebSession>, IEnumerable<DesktopClientSession>, IEnumerable<MobileClientSession>)
  • Properties
    • DesktopClients
    • MobileClients
    • TeamMemberId
    • WebSessions
Back to top Generated by DocFX