Show / Hide Table of Contents

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 Source

ListMemberDevicesResult(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 Source

ActiveWebSessions

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListMemberDevicesResult(IEnumerable<ActiveWebSession>, IEnumerable<DesktopClientSession>, IEnumerable<MobileClientSession>)
  • Properties
    • ActiveWebSessions
    • DesktopClientSessions
    • MobileClientSessions
Back to top Generated by DocFX