Dropbox .NET SDK

Class FileOrFolderLogInfo

Generic information relevant both for files and folders

Inheritance
object
FileOrFolderLogInfo
FileLogInfo
FolderLogInfo
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 FileOrFolderLogInfo

Constructors

View Source

FileOrFolderLogInfo(PathLogInfo, string, string, ulong?)

Initializes a new instance of the FileOrFolderLogInfo class.

Declaration
public FileOrFolderLogInfo(PathLogInfo path, string displayName = null, string fileId = null, ulong? fileSize = null)
Parameters
Type Name Description
PathLogInfo path

Path relative to event context.

string displayName

Display name.

string fileId

Unique ID.

ulong? fileSize

File or folder size in bytes.

Properties

View Source

DisplayName

Display name.

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

FileId

Unique ID.

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

FileSize

File or folder size in bytes.

Declaration
public ulong? FileSize { get; protected set; }
Property Value
Type Description
ulong?
View Source

Path

Path relative to event context.

Declaration
public PathLogInfo Path { get; protected set; }
Property Value
Type Description
PathLogInfo

See Also

FileLogInfo
FolderLogInfo
  • View Source
In this article
Back to top Dropbox .NET SDK