Dropbox .NET SDK

Class AppLogInfo

App's logged information.

Inheritance
object
AppLogInfo
TeamLinkedAppLogInfo
UserLinkedAppLogInfo
UserOrTeamLinkedAppLogInfo
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 AppLogInfo

Constructors

View Source

AppLogInfo(string, string)

Initializes a new instance of the AppLogInfo class.

Declaration
protected AppLogInfo(string appId = null, string displayName = null)
Parameters
Type Name Description
string appId

App unique ID.

string displayName

App display name.

Properties

View Source

AppId

App unique ID.

Declaration
public string AppId { get; protected set; }
Property Value
Type Description
string
View Source

AsTeamLinkedApp

Gets this instance as a TeamLinkedAppLogInfo, or null.

Declaration
public TeamLinkedAppLogInfo AsTeamLinkedApp { get; }
Property Value
Type Description
TeamLinkedAppLogInfo
View Source

AsUserLinkedApp

Gets this instance as a UserLinkedAppLogInfo, or null.

Declaration
public UserLinkedAppLogInfo AsUserLinkedApp { get; }
Property Value
Type Description
UserLinkedAppLogInfo
View Source

AsUserOrTeamLinkedApp

Gets this instance as a UserOrTeamLinkedAppLogInfo, or null.

Declaration
public UserOrTeamLinkedAppLogInfo AsUserOrTeamLinkedApp { get; }
Property Value
Type Description
UserOrTeamLinkedAppLogInfo
View Source

DisplayName

App display name.

Declaration
public string DisplayName { get; protected set; }
Property Value
Type Description
string
View Source

IsTeamLinkedApp

Gets a value indicating whether this instance is TeamLinkedApp

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

IsUserLinkedApp

Gets a value indicating whether this instance is UserLinkedApp

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

IsUserOrTeamLinkedApp

Gets a value indicating whether this instance is UserOrTeamLinkedApp

Declaration
public bool IsUserOrTeamLinkedApp { get; }
Property Value
Type Description
bool

See Also

AppBlockedByPermissionsDetails
AppLinkTeamDetails
AppLinkUserDetails
AppUnlinkTeamDetails
AppUnlinkUserDetails
TeamLinkedAppLogInfo
UserLinkedAppLogInfo
UserOrTeamLinkedAppLogInfo
  • View Source
In this article
Back to top Dropbox .NET SDK