Class WebDeviceSessionLogInfo
Information on active web sessions
Inherited Members
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class WebDeviceSessionLogInfo : DeviceSessionLogInfo
Constructors
View SourceWebDeviceSessionLogInfo(string, string, string, string, DateTime?, DateTime?, WebSessionLogInfo)
Initializes a new instance of the WebDeviceSessionLogInfo class.
Declaration
public WebDeviceSessionLogInfo(string userAgent, string os, string browser, string ipAddress = null, DateTime? created = null, DateTime? updated = null, WebSessionLogInfo sessionInfo = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | userAgent | Information on the hosting device. |
| string | os | Information on the hosting operating system. |
| string | browser | Information on the browser used for this web session. |
| string | ipAddress | The IP address of the last activity from this session. |
| DateTime? | created | The time this session was created. |
| DateTime? | updated | The time of the last activity from this session. |
| WebSessionLogInfo | sessionInfo | Web session unique id. |
Properties
View SourceBrowser
Information on the browser used for this web session.
Declaration
public string Browser { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
Os
Information on the hosting operating system.
Declaration
public string Os { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
SessionInfo
Web session unique id.
Declaration
public WebSessionLogInfo SessionInfo { get; protected set; }
Property Value
| Type | Description |
|---|---|
| WebSessionLogInfo |
UserAgent
Information on the hosting device.
Declaration
public string UserAgent { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |