Dropbox .NET SDK
Show / Hide Table of Contents

Class MetadataUnion

The extracted metadata. Exactly one variant is populated, corresponding to MetadataType.

Inheritance
object
MetadataUnion
MetadataUnion.Exif
MetadataUnion.Media
MetadataUnion.Office
MetadataUnion.Other
MetadataUnion.Pdf
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public class MetadataUnion

Constructors

View Source

MetadataUnion()

Initializes a new instance of the MetadataUnion class.

Declaration
public MetadataUnion()

Properties

View Source

AsExif

Gets this instance as a Exif, or null.

Declaration
public MetadataUnion.Exif AsExif { get; }
Property Value
Type Description
MetadataUnion.Exif
View Source

AsMedia

Gets this instance as a Media, or null.

Declaration
public MetadataUnion.Media AsMedia { get; }
Property Value
Type Description
MetadataUnion.Media
View Source

AsOffice

Gets this instance as a Office, or null.

Declaration
public MetadataUnion.Office AsOffice { get; }
Property Value
Type Description
MetadataUnion.Office
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public MetadataUnion.Other AsOther { get; }
Property Value
Type Description
MetadataUnion.Other
View Source

AsPdf

Gets this instance as a Pdf, or null.

Declaration
public MetadataUnion.Pdf AsPdf { get; }
Property Value
Type Description
MetadataUnion.Pdf
View Source

IsExif

Gets a value indicating whether this instance is Exif

Declaration
public bool IsExif { get; }
Property Value
Type Description
bool
View Source

IsMedia

Gets a value indicating whether this instance is Media

Declaration
public bool IsMedia { get; }
Property Value
Type Description
bool
View Source

IsOffice

Gets a value indicating whether this instance is Office

Declaration
public bool IsOffice { get; }
Property Value
Type Description
bool
View Source

IsOther

Gets a value indicating whether this instance is Other

Declaration
public bool IsOther { get; }
Property Value
Type Description
bool
View Source

IsPdf

Gets a value indicating whether this instance is Pdf

Declaration
public bool IsPdf { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK