Class FileOrFolderLogInfo
Generic information relevant both for files and folders
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 FileOrFolderLogInfo
Constructors
| Improve this Doc View SourceFileOrFolderLogInfo(PathLogInfo, String, String, Nullable<UInt64>)
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. |
| System.String | displayName | Display name. |
| System.String | fileId | Unique ID. |
| System.Nullable<System.UInt64> | fileSize | File or folder size in bytes. |
Properties
| Improve this Doc View SourceDisplayName
Display name.
Declaration
public string DisplayName { get; protected set; }
Property Value
| Type | Description |
|---|---|
| System.String |
FileId
Unique ID.
Declaration
public string FileId { get; protected set; }
Property Value
| Type | Description |
|---|---|
| System.String |
FileSize
File or folder size in bytes.
Declaration
public ulong? FileSize { get; protected set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.UInt64> |
Path
Path relative to event context.
Declaration
public PathLogInfo Path { get; protected set; }
Property Value
| Type | Description |
|---|---|
| PathLogInfo |