Dropbox .NET SDK
Show / Hide Table of Contents

Class ListMemberDevicesResult

The list member devices result object

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

Constructors

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
IEnumerable<ActiveWebSession> activeWebSessions

List of web sessions made by this team member.

IEnumerable<DesktopClientSession> desktopClientSessions

List of desktop clients used by this team member.

IEnumerable<MobileClientSession> mobileClientSessions

List of mobile client used by this team member.

Properties

View Source

ActiveWebSessions

List of web sessions made by this team member.

Declaration
public IList<ActiveWebSession> ActiveWebSessions { get; protected set; }
Property Value
Type Description
IList<ActiveWebSession>
View Source

DesktopClientSessions

List of desktop clients used by this team member.

Declaration
public IList<DesktopClientSession> DesktopClientSessions { get; protected set; }
Property Value
Type Description
IList<DesktopClientSession>
View Source

MobileClientSessions

List of mobile client used by this team member.

Declaration
public IList<MobileClientSession> MobileClientSessions { get; protected set; }
Property Value
Type Description
IList<MobileClientSession>
  • View Source
In this article
Back to top Dropbox .NET SDK