Show / Hide Table of Contents

Class ListTeamDevicesArg

The list team devices arg object

Inheritance
System.Object
ListTeamDevicesArg
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 ListTeamDevicesArg

Constructors

| Improve this Doc View Source

ListTeamDevicesArg(String, Boolean, Boolean, Boolean)

Initializes a new instance of the ListTeamDevicesArg class.

Declaration
public ListTeamDevicesArg(string cursor = null, bool includeWebSessions = true, bool includeDesktopClients = true, bool includeMobileClients = true)
Parameters
Type Name Description
System.String cursor

At the first call to the DevicesListTeamDevicesAsync(ListTeamDevicesArg) the cursor shouldn't be passed. Then, if the result of the call includes a cursor, the following requests should include the received cursors in order to receive the next sub list of team devices.

System.Boolean includeWebSessions

Whether to list web sessions of the team members.

System.Boolean includeDesktopClients

Whether to list desktop clients of the team members.

System.Boolean includeMobileClients

Whether to list mobile clients of the team members.

Properties

| Improve this Doc View Source

Cursor

At the first call to the DevicesListTeamDevicesAsync(ListTeamDevicesArg) the cursor shouldn't be passed. Then, if the result of the call includes a cursor, the following requests should include the received cursors in order to receive the next sub list of team devices.

Declaration
public string Cursor { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

IncludeDesktopClients

Whether to list desktop clients of the team members.

Declaration
public bool IncludeDesktopClients { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IncludeMobileClients

Whether to list mobile clients of the team members.

Declaration
public bool IncludeMobileClients { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IncludeWebSessions

Whether to list web sessions of the team members.

Declaration
public bool IncludeWebSessions { get; protected set; }
Property Value
Type Description
System.Boolean
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListTeamDevicesArg(String, Boolean, Boolean, Boolean)
  • Properties
    • Cursor
    • IncludeDesktopClients
    • IncludeMobileClients
    • IncludeWebSessions
Back to top Generated by DocFX