Dropbox .NET SDK
Show / Hide Table of Contents

Class DevicesActive

Each of the items is an array of values, one value per day. The value is the number of devices active within a time window, ending with that day. If there is no data for a day, then the value will be None.

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

Constructors

View Source

DevicesActive(IEnumerable<ulong?>, IEnumerable<ulong?>, IEnumerable<ulong?>, IEnumerable<ulong?>, IEnumerable<ulong?>, IEnumerable<ulong?>, IEnumerable<ulong?>)

Initializes a new instance of the DevicesActive class.

Declaration
public DevicesActive(IEnumerable<ulong?> windows, IEnumerable<ulong?> macos, IEnumerable<ulong?> linux, IEnumerable<ulong?> ios, IEnumerable<ulong?> android, IEnumerable<ulong?> other, IEnumerable<ulong?> total)
Parameters
Type Name Description
IEnumerable<ulong?> windows

Array of number of linked windows (desktop) clients with activity.

IEnumerable<ulong?> macos

Array of number of linked mac (desktop) clients with activity.

IEnumerable<ulong?> linux

Array of number of linked linus (desktop) clients with activity.

IEnumerable<ulong?> ios

Array of number of linked ios devices with activity.

IEnumerable<ulong?> android

Array of number of linked android devices with activity.

IEnumerable<ulong?> other

Array of number of other linked devices (blackberry, windows phone, etc) with activity.

IEnumerable<ulong?> total

Array of total number of linked clients with activity.

Properties

View Source

Android

Array of number of linked android devices with activity.

Declaration
public IList<ulong?> Android { get; protected set; }
Property Value
Type Description
IList<ulong?>
View Source

Ios

Array of number of linked ios devices with activity.

Declaration
public IList<ulong?> Ios { get; protected set; }
Property Value
Type Description
IList<ulong?>
View Source

Linux

Array of number of linked linus (desktop) clients with activity.

Declaration
public IList<ulong?> Linux { get; protected set; }
Property Value
Type Description
IList<ulong?>
View Source

Macos

Array of number of linked mac (desktop) clients with activity.

Declaration
public IList<ulong?> Macos { get; protected set; }
Property Value
Type Description
IList<ulong?>
View Source

Other

Array of number of other linked devices (blackberry, windows phone, etc) with activity.

Declaration
public IList<ulong?> Other { get; protected set; }
Property Value
Type Description
IList<ulong?>
View Source

Total

Array of total number of linked clients with activity.

Declaration
public IList<ulong?> Total { get; protected set; }
Property Value
Type Description
IList<ulong?>
View Source

Windows

Array of number of linked windows (desktop) clients with activity.

Declaration
public IList<ulong?> Windows { get; protected set; }
Property Value
Type Description
IList<ulong?>

See Also

GetDevicesReport
  • View Source
In this article
Back to top Dropbox .NET SDK