Dropbox .NET SDK

Class ParticipantLogInfo

A user or group

Inheritance
object
ParticipantLogInfo
ParticipantLogInfo.Group
ParticipantLogInfo.Other
ParticipantLogInfo.User
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 ParticipantLogInfo

Constructors

View Source

ParticipantLogInfo()

Initializes a new instance of the ParticipantLogInfo class.

Declaration
public ParticipantLogInfo()

Properties

View Source

AsGroup

Gets this instance as a Group, or null.

Declaration
public ParticipantLogInfo.Group AsGroup { get; }
Property Value
Type Description
ParticipantLogInfo.Group
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public ParticipantLogInfo.Other AsOther { get; }
Property Value
Type Description
ParticipantLogInfo.Other
View Source

AsUser

Gets this instance as a User, or null.

Declaration
public ParticipantLogInfo.User AsUser { get; }
Property Value
Type Description
ParticipantLogInfo.User
View Source

IsGroup

Gets a value indicating whether this instance is Group

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

IsOther

Gets a value indicating whether this instance is Other

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

IsUser

Gets a value indicating whether this instance is User

Declaration
public bool IsUser { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK