Class MobileDeviceSessionLogInfo
Information about linked Dropbox mobile client sessions
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.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class MobileDeviceSessionLogInfo : DeviceSessionLogInfo
Constructors
| Improve this Doc View SourceMobileDeviceSessionLogInfo(String, MobileClientPlatform, String, Nullable<DateTime>, Nullable<DateTime>, MobileSessionLogInfo, String, String, String)
Initializes a new instance of the MobileDeviceSessionLogInfo class.
Declaration
public MobileDeviceSessionLogInfo(string deviceName, MobileClientPlatform clientType, string ipAddress = null, DateTime? created = null, DateTime? updated = null, MobileSessionLogInfo sessionInfo = null, string clientVersion = null, string osVersion = null, string lastCarrier = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | deviceName | The device name. |
| MobileClientPlatform | clientType | The mobile application type. |
| System.String | ipAddress | The IP address of the last activity from this session. |
| System.Nullable<System.DateTime> | created | The time this session was created. |
| System.Nullable<System.DateTime> | updated | The time of the last activity from this session. |
| MobileSessionLogInfo | sessionInfo | Mobile session unique id. |
| System.String | clientVersion | The Dropbox client version. |
| System.String | osVersion | The hosting OS version. |
| System.String | lastCarrier | last carrier used by the device. |
Properties
| Improve this Doc View SourceClientType
The mobile application type.
Declaration
public MobileClientPlatform ClientType { get; protected set; }
Property Value
| Type | Description |
|---|---|
| MobileClientPlatform |
ClientVersion
The Dropbox client version.
Declaration
public string ClientVersion { get; protected set; }
Property Value
| Type | Description |
|---|---|
| System.String |
DeviceName
The device name.
Declaration
public string DeviceName { get; protected set; }
Property Value
| Type | Description |
|---|---|
| System.String |
LastCarrier
last carrier used by the device.
Declaration
public string LastCarrier { get; protected set; }
Property Value
| Type | Description |
|---|---|
| System.String |
OsVersion
The hosting OS version.
Declaration
public string OsVersion { get; protected set; }
Property Value
| Type | Description |
|---|---|
| System.String |
SessionInfo
Mobile session unique id.
Declaration
public MobileSessionLogInfo SessionInfo { get; protected set; }
Property Value
| Type | Description |
|---|---|
| MobileSessionLogInfo |