Dropbox .NET SDK
Show / Hide Table of Contents

Class VideoMetadata

Metadata for a video.

Inheritance
object
MediaMetadata
VideoMetadata
Inherited Members
MediaMetadata.IsPhoto
MediaMetadata.AsPhoto
MediaMetadata.IsVideo
MediaMetadata.AsVideo
MediaMetadata.Dimensions
MediaMetadata.Location
MediaMetadata.TimeTaken
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 VideoMetadata : MediaMetadata

Constructors

View Source

VideoMetadata(Dimensions, GpsCoordinates, DateTime?, ulong?)

Initializes a new instance of the VideoMetadata class.

Declaration
public VideoMetadata(Dimensions dimensions = null, GpsCoordinates location = null, DateTime? timeTaken = null, ulong? duration = null)
Parameters
Type Name Description
Dimensions dimensions

Dimension of the photo/video.

GpsCoordinates location

The GPS coordinate of the photo/video.

DateTime? timeTaken

The timestamp when the photo/video is taken.

ulong? duration

The duration of the video in milliseconds.

Properties

View Source

Duration

The duration of the video in milliseconds.

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