Show / Hide Table of Contents

Class UserLogInfo

User's logged information.

Inheritance
System.Object
UserLogInfo
NonTeamMemberLogInfo
TeamMemberLogInfo
TrustedNonTeamMemberLogInfo
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 UserLogInfo

Constructors

| Improve this Doc 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
System.String accountId

User unique ID.

System.String displayName

User display name.

System.String email

User email address.

Properties

| Improve this Doc View Source

AccountId

User unique ID.

Declaration
public string AccountId { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

AsNonTeamMember

Gets this instance as a NonTeamMemberLogInfo, or null.

Declaration
public NonTeamMemberLogInfo AsNonTeamMember { get; }
Property Value
Type Description
NonTeamMemberLogInfo
| Improve this Doc View Source

AsTeamMember

Gets this instance as a TeamMemberLogInfo, or null.

Declaration
public TeamMemberLogInfo AsTeamMember { get; }
Property Value
Type Description
TeamMemberLogInfo
| Improve this Doc View Source

AsTrustedNonTeamMember

Gets this instance as a TrustedNonTeamMemberLogInfo, or null.

Declaration
public TrustedNonTeamMemberLogInfo AsTrustedNonTeamMember { get; }
Property Value
Type Description
TrustedNonTeamMemberLogInfo
| Improve this Doc View Source

DisplayName

User display name.

Declaration
public string DisplayName { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Email

User email address.

Declaration
public string Email { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

IsNonTeamMember

Gets a value indicating whether this instance is NonTeamMember

Declaration
public bool IsNonTeamMember { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IsTeamMember

Gets a value indicating whether this instance is TeamMember

Declaration
public bool IsTeamMember { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IsTrustedNonTeamMember

Gets a value indicating whether this instance is TrustedNonTeamMember

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

See Also

NonTeamMemberLogInfo
TeamMemberLogInfo
TrustedNonTeamMemberLogInfo
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX