Class ListMemberDevicesResult
The list member devices result object
Inheritance
System.Object
ListMemberDevicesResult
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 ListMemberDevicesResult
Constructors
| Improve this Doc View SourceListMemberDevicesResult(IEnumerable<ActiveWebSession>, IEnumerable<DesktopClientSession>, IEnumerable<MobileClientSession>)
Initializes a new instance of the ListMemberDevicesResult class.
Declaration
public ListMemberDevicesResult(IEnumerable<ActiveWebSession> activeWebSessions = null, IEnumerable<DesktopClientSession> desktopClientSessions = null, IEnumerable<MobileClientSession> mobileClientSessions = null)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<ActiveWebSession> | activeWebSessions | List of web sessions made by this team member. |
System.Collections.Generic.IEnumerable<DesktopClientSession> | desktopClientSessions | List of desktop clients used by this team member. |
System.Collections.Generic.IEnumerable<MobileClientSession> | mobileClientSessions | List of mobile client used by this team member. |
Properties
| Improve this Doc View SourceActiveWebSessions
List of web sessions made by this team member.
Declaration
public IList<ActiveWebSession> ActiveWebSessions { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<ActiveWebSession> |
DesktopClientSessions
List of desktop clients used by this team member.
Declaration
public IList<DesktopClientSession> DesktopClientSessions { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<DesktopClientSession> |
MobileClientSessions
List of mobile client used by this team member.
Declaration
public IList<MobileClientSession> MobileClientSessions { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<MobileClientSession> |