Dropbox .NET SDK

Class UserLogInfo

User's logged information.

Inheritance
object
UserLogInfo
NonTeamMemberLogInfo
TeamMemberLogInfo
TrustedNonTeamMemberLogInfo
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 UserLogInfo

Constructors

View Source

UserLogInfo(string, string, string)

Initializes a new instance of the UserLogInfo class.

Declaration
protected UserLogInfo(string accountId = null, string displayName = null, string email = null)
Parameters
Type Name Description
string accountId

User unique ID.

string displayName

User display name.

string email

User email address.

Properties

View Source

AccountId

User unique ID.

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

AsNonTeamMember

Gets this instance as a NonTeamMemberLogInfo, or null.

Declaration
public NonTeamMemberLogInfo AsNonTeamMember { get; }
Property Value
Type Description
NonTeamMemberLogInfo
View Source

AsTeamMember

Gets this instance as a TeamMemberLogInfo, or null.

Declaration
public TeamMemberLogInfo AsTeamMember { get; }
Property Value
Type Description
TeamMemberLogInfo
View Source

AsTrustedNonTeamMember

Gets this instance as a TrustedNonTeamMemberLogInfo, or null.

Declaration
public TrustedNonTeamMemberLogInfo AsTrustedNonTeamMember { get; }
Property Value
Type Description
TrustedNonTeamMemberLogInfo
View Source

DisplayName

User display name.

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

Email

User email address.

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

IsNonTeamMember

Gets a value indicating whether this instance is NonTeamMember

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

IsTeamMember

Gets a value indicating whether this instance is TeamMember

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

IsTrustedNonTeamMember

Gets a value indicating whether this instance is TrustedNonTeamMember

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

See Also

NonTeamMemberLogInfo
TeamMemberLogInfo
TrustedNonTeamMemberLogInfo
  • View Source
In this article
Back to top Dropbox .NET SDK