Dropbox .NET SDK
Show / Hide Table of Contents

Class ListMembersDevicesResult

The list members devices result object

Inheritance
object
ListMembersDevicesResult
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 ListMembersDevicesResult

Constructors

View Source

ListMembersDevicesResult(IEnumerable<MemberDevices>, bool, string)

Initializes a new instance of the ListMembersDevicesResult class.

Declaration
public ListMembersDevicesResult(IEnumerable<MemberDevices> devices, bool hasMore, string cursor = null)
Parameters
Type Name Description
IEnumerable<MemberDevices> devices

The devices of each member of the team.

bool hasMore

If true, then there are more devices available. Pass the cursor to DevicesListMembersDevicesAsync(ListMembersDevicesArg) to retrieve the rest.

string cursor

Pass the cursor into DevicesListMembersDevicesAsync(ListMembersDevicesArg) to receive the next sub list of team's devices.

Properties

View Source

Cursor

Pass the cursor into DevicesListMembersDevicesAsync(ListMembersDevicesArg) to receive the next sub list of team's devices.

Declaration
public string Cursor { get; protected set; }
Property Value
Type Description
string
View Source

Devices

The devices of each member of the team.

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

HasMore

If true, then there are more devices available. Pass the cursor to DevicesListMembersDevicesAsync(ListMembersDevicesArg) to retrieve the rest.

Declaration
public bool HasMore { get; protected set; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK