Dropbox .NET SDK
Show / Hide Table of Contents

Class PreviewResult

The preview result object

Inheritance
object
PreviewResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class PreviewResult

Constructors

View Source

PreviewResult(FileMetadata, MinimalFileLinkMetadata)

Initializes a new instance of the PreviewResult class.

Declaration
public PreviewResult(FileMetadata fileMetadata = null, MinimalFileLinkMetadata linkMetadata = null)
Parameters
Type Name Description
FileMetadata fileMetadata

Metadata corresponding to the file received as an argument. Will be populated if the endpoint is called with a path (ReadPath).

MinimalFileLinkMetadata linkMetadata

Minimal metadata corresponding to the file received as an argument. Will be populated if the endpoint is called using a shared link (SharedLinkFileInfo).

Properties

View Source

FileMetadata

Metadata corresponding to the file received as an argument. Will be populated if the endpoint is called with a path (ReadPath).

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

LinkMetadata

Minimal metadata corresponding to the file received as an argument. Will be populated if the endpoint is called using a shared link (SharedLinkFileInfo).

Declaration
public MinimalFileLinkMetadata LinkMetadata { get; protected set; }
Property Value
Type Description
MinimalFileLinkMetadata
  • View Source
In this article
Back to top Dropbox .NET SDK