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
System.Object
DevicesActive
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 DevicesActive

Constructors

| Improve this Doc View Source

DevicesActive(IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>)

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
System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> windows

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

System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> macos

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

System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> linux

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

System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> ios

Array of number of linked ios devices with activity.

System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> android

Array of number of linked android devices with activity.

System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> other

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

System.Collections.Generic.IEnumerable<System.Nullable<System.UInt64>> total

Array of total number of linked clients with activity.

Properties

| Improve this Doc View Source

Android

Array of number of linked android devices with activity.

Declaration
public IList<ulong?> Android { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.UInt64>>
| Improve this Doc View Source

Ios

Array of number of linked ios devices with activity.

Declaration
public IList<ulong?> Ios { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.UInt64>>
| Improve this Doc 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
System.Collections.Generic.IList<System.Nullable<System.UInt64>>
| Improve this Doc 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
System.Collections.Generic.IList<System.Nullable<System.UInt64>>
| Improve this Doc 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
System.Collections.Generic.IList<System.Nullable<System.UInt64>>
| Improve this Doc View Source

Total

Array of total number of linked clients with activity.

Declaration
public IList<ulong?> Total { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.UInt64>>
| Improve this Doc 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
System.Collections.Generic.IList<System.Nullable<System.UInt64>>

See Also

GetDevicesReport
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • DevicesActive(IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>, IEnumerable<Nullable<UInt64>>)
  • Properties
    • Android
    • Ios
    • Linux
    • Macos
    • Other
    • Total
    • Windows
  • See Also
Back to top Generated by DocFX