Dropbox .NET SDK
Show / Hide Table of Contents

Class AlphaGetMetadataArg

The alpha get metadata arg object

Inheritance
object
GetMetadataArg
AlphaGetMetadataArg
Inherited Members
GetMetadataArg.Path
GetMetadataArg.IncludeMediaInfo
GetMetadataArg.IncludeDeleted
GetMetadataArg.IncludeHasExplicitSharedMembers
GetMetadataArg.IncludePropertyGroups
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 AlphaGetMetadataArg : GetMetadataArg

Constructors

View Source

AlphaGetMetadataArg(string, bool, bool, bool, TemplateFilterBase, IEnumerable<string>)

Initializes a new instance of the AlphaGetMetadataArg class.

Declaration
public AlphaGetMetadataArg(string path, bool includeMediaInfo = false, bool includeDeleted = false, bool includeHasExplicitSharedMembers = false, TemplateFilterBase includePropertyGroups = null, IEnumerable<string> includePropertyTemplates = null)
Parameters
Type Name Description
string path

The path of a file or folder on Dropbox.

bool includeMediaInfo

If true, MediaInfo is set for photo and video.

bool includeDeleted

If true, DeletedMetadata will be returned for deleted file or folder, otherwise LookupError.NotFound will be returned.

bool includeHasExplicitSharedMembers

If true, the results will include a flag for each file indicating whether or not that file has any explicit members.

TemplateFilterBase includePropertyGroups

If set to a valid list of template IDs, PropertyGroups is set if there exists property data associated with the file and each of the listed templates.

IEnumerable<string> includePropertyTemplates

Field is deprecated. If set to a valid list of template IDs, PropertyGroups is set for files with custom properties.

Properties

View Source

IncludePropertyTemplates

Field is deprecated. If set to a valid list of template IDs, PropertyGroups is set for files with custom properties.

Declaration
public IList<string> IncludePropertyTemplates { get; protected set; }
Property Value
Type Description
IList<string>
  • View Source
In this article
Back to top Dropbox .NET SDK