Dropbox .NET SDK

Class SessionLogInfo

Session's logged information.

Inheritance
object
SessionLogInfo
DesktopSessionLogInfo
MobileSessionLogInfo
WebSessionLogInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class SessionLogInfo

Constructors

View Source

SessionLogInfo(string)

Initializes a new instance of the SessionLogInfo class.

Declaration
protected SessionLogInfo(string sessionId = null)
Parameters
Type Name Description
string sessionId

Session ID.

Properties

View Source

AsDesktop

Gets this instance as a DesktopSessionLogInfo, or null.

Declaration
public DesktopSessionLogInfo AsDesktop { get; }
Property Value
Type Description
DesktopSessionLogInfo
View Source

AsMobile

Gets this instance as a MobileSessionLogInfo, or null.

Declaration
public MobileSessionLogInfo AsMobile { get; }
Property Value
Type Description
MobileSessionLogInfo
View Source

AsWeb

Gets this instance as a WebSessionLogInfo, or null.

Declaration
public WebSessionLogInfo AsWeb { get; }
Property Value
Type Description
WebSessionLogInfo
View Source

IsDesktop

Gets a value indicating whether this instance is Desktop

Declaration
public bool IsDesktop { get; }
Property Value
Type Description
bool
View Source

IsMobile

Gets a value indicating whether this instance is Mobile

Declaration
public bool IsMobile { get; }
Property Value
Type Description
bool
View Source

IsWeb

Gets a value indicating whether this instance is Web

Declaration
public bool IsWeb { get; }
Property Value
Type Description
bool
View Source

SessionId

Session ID.

Declaration
public string SessionId { get; protected set; }
Property Value
Type Description
string

See Also

DesktopSessionLogInfo
MobileSessionLogInfo
WebSessionLogInfo
  • View Source
In this article
Back to top Dropbox .NET SDK