Dropbox .NET SDK
Show / Hide Table of Contents

Class ListTeamDevicesResult

The list team devices result object

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

Constructors

View Source

ListTeamDevicesResult(IEnumerable<MemberDevices>, bool, string)

Initializes a new instance of the ListTeamDevicesResult class.

Declaration
public ListTeamDevicesResult(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 DevicesListTeamDevicesAsync(ListTeamDevicesArg) to retrieve the rest.

string cursor

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

Properties

View Source

Cursor

Pass the cursor into DevicesListTeamDevicesAsync(ListTeamDevicesArg) 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 DevicesListTeamDevicesAsync(ListTeamDevicesArg) 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