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 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 |
---|---|---|
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 SourceDesktopClients
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> |
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> |
TeamMemberId
The member unique Id.
Declaration
public string TeamMemberId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
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> |