Class FileOrFolderLogInfo
Generic information relevant both for files and folders
Inherited Members
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class FileOrFolderLogInfo
Constructors
View SourceFileOrFolderLogInfo(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 SourceDisplayName
Display name.
Declaration
public string DisplayName { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
FileId
Unique ID.
Declaration
public string FileId { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
FileSize
File or folder size in bytes.
Declaration
public ulong? FileSize { get; protected set; }
Property Value
| Type | Description |
|---|---|
| ulong? |
Path
Path relative to event context.
Declaration
public PathLogInfo Path { get; protected set; }
Property Value
| Type | Description |
|---|---|
| PathLogInfo |