Dropbox .NET SDK
Show / Hide Table of Contents

Class GetMetadataResult

The get metadata result object

Inheritance
object
GetMetadataResult
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 GetMetadataResult

Constructors

View Source

GetMetadataResult(MetadataType, MetadataUnion)

Initializes a new instance of the GetMetadataResult class.

Declaration
public GetMetadataResult(MetadataType metadataType = null, MetadataUnion metadata = null)
Parameters
Type Name Description
MetadataType metadataType

The kind of metadata that was extracted for the requested file. Callers should read the matching field of the metadata oneof.

MetadataUnion metadata

The metadata

Properties

View Source

Metadata

Gets the metadata of the get metadata result

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

MetadataType

The kind of metadata that was extracted for the requested file. Callers should read the matching field of the `metadata` oneof.

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