Class Metadata

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.Metadata.dll
API Level:
3

Represents the metadata information of a media.

C#
Copy
public class Metadata
Inheritance
System.Object
Metadata

Properties

View Source

Album

Gets the album name of the media.

Declaration
C#
Copy
public string Album { get; }
Property Value
Type Description
System.String

A string representing the album name, or null if the information does not exist.

API Level: 3
View Source

AlbumArtist

Gets the album artist of the media.

Declaration
C#
Copy
public string AlbumArtist { get; }
Property Value
Type Description
System.String

A string representing the album artist, or null if the information does not exist.

API Level: 3
View Source

Altitude

Gets the altitude of the media.

Declaration
C#
Copy
public double? Altitude { get; }
Property Value
Type Description
System.Nullable<System.Double>

The altitude value, or null if the information does not exist.

API Level: 4
View Source

Artist

Gets the artist of the media.

Declaration
C#
Copy
public string Artist { get; }
Property Value
Type Description
System.String

A string representing the artist, or null if the information does not exist.

API Level: 3
View Source

Audio

Gets the audio metadata.

Declaration
C#
Copy
public AudioMetadata Audio { get; }
Property Value
Type Description
AudioMetadata

The audio metadata, or null if the information does not exist.

API Level: 4
View Source

Author

Gets the author of the media.

Declaration
C#
Copy
[Obsolete("Please do not use! This will be deprecated. Please use Composer instead.")] public string Author { get; }
Property Value
Type Description
System.String

A string representing the author, or null if the information does not exist.

API Level: 3
View Source

Classification

Gets the classification of the media.

Declaration
C#
Copy
public string Classification { get; }
Property Value
Type Description
System.String

A string representing the classification, or null if the information does not exist.

API Level: 3
View Source

Comment

Gets the comment of the media.

Declaration
C#
Copy
public string Comment { get; }
Property Value
Type Description
System.String

A string representing the comment, or null if the information does not exist.

API Level: 3
View Source

Composer

Gets the composer of the media.

Declaration
C#
Copy
public string Composer { get; }
Property Value
Type Description
System.String

A string representing the composer, or null if the information does not exist.

API Level: 6
View Source

Conductor

Gets the conductor of the media.

Declaration
C#
Copy
public string Conductor { get; }
Property Value
Type Description
System.String

A string representing the conductor, or null if the information does not exist.

API Level: 3
View Source

Content360

Gets the information for 360 content of the media.

Declaration
C#
Copy
public string Content360 { get; }
Property Value
Type Description
System.String

A string representing the information for 360 content, or null if the information does not exist.

API Level: 3
View Source

Gets the copyright of the media.

Declaration
C#
Copy
public string Copyright { get; }
Property Value
Type Description
System.String

A string representing the copyright, or null if the information does not exist.

API Level: 3
View Source

DateRecorded

Gets the recording date of the media.

Declaration
C#
Copy
public string DateRecorded { get; }
Property Value
Type Description
System.String

A string representing the recording date, or null if the information does not exist.

API Level: 4
View Source

DateReleased

Gets the release date of the media.

Declaration
C#
Copy
public string DateReleased { get; }
Property Value
Type Description
System.String

A string representing the release date, or null if the information does not exist.

API Level: 4
View Source

Description

Gets the description of the media.

Declaration
C#
Copy
public string Description { get; }
Property Value
Type Description
System.String

A string representing the description, or null if the information does not exist.

API Level: 3
View Source

Duration

Gets the duration of the media.

Declaration
C#
Copy
public int? Duration { get; }
Property Value
Type Description
System.Nullable<Int32>

The duration value, or null if the information does not exist.

API Level: 4
View Source

Genre

Gets the genre of the media.

Declaration
C#
Copy
public string Genre { get; }
Property Value
Type Description
System.String

A string representing the genre, or null if the information does not exist.

API Level: 3
View Source

Latitude

Gets the latitude of the media.

Declaration
C#
Copy
public double? Latitude { get; }
Property Value
Type Description
System.Nullable<System.Double>

The latitude value, or null if the information does not exist.

API Level: 4
View Source

Longitude

Gets the longitude of the media.

Declaration
C#
Copy
public double? Longitude { get; }
Property Value
Type Description
System.Nullable<System.Double>

The longitude value, or null if the information does not exist.

API Level: 4
View Source

Rating

Gets the rating of the media.

Declaration
C#
Copy
public string Rating { get; }
Property Value
Type Description
System.String

A string representing the rating, or null if the information does not exist.

API Level: 3
View Source

Rotation

Gets the rotate(orientation) information of the media.

Declaration
C#
Copy
public string Rotation { get; }
Property Value
Type Description
System.String

A string representing the rotation information, or null if the information does not exist.

API Level: 4
View Source

SyncLyricsCount

Gets the number of synchronized lyrics of the media.

Declaration
C#
Copy
public int SyncLyricsCount { get; }
Property Value
Type Description
Int32

The number of the synchronized lyrics.

API Level: 4
View Source

Title

Gets the title of the media.

Declaration
C#
Copy
public string Title { get; }
Property Value
Type Description
System.String

A string representing the title, or null if the information does not exist.

API Level: 3
View Source

TrackNumber

Gets the track number of the media.

Declaration
C#
Copy
public string TrackNumber { get; }
Property Value
Type Description
System.String

A string representing the track number, or null if the information does not exist.

API Level: 3
View Source

UnsyncLyrics

Gets the unsynchronized lyrics of the media.

Declaration
C#
Copy
public string UnsyncLyrics { get; }
Property Value
Type Description
System.String

A string representing the unsynchronized lyrics, or null if the information does not exist.

API Level: 4
View Source

Video

Gets the video metadata.

Declaration
C#
Copy
public VideoMetadata Video { get; }
Property Value
Type Description
VideoMetadata

The video metadata, or null if the information does not exist.

API Level: 4

Methods

View Source

ToString()

Returns a string that represents the current object.

Declaration
C#
Copy
public override string ToString()
Returns
Type Description
System.String

A string that represents the current object.

Overrides
System.Object.ToString()
API Level: 3