Class MediaInfo
Definition
- Namespace:
- Tizen.Content.MediaContent
- Assembly:
- Tizen.Content.MediaContent.dll
Represents the information related to the media stored.
public class MediaInfo
- Inheritance
-
MediaInfo
- Derived
Properties
View SourceDateAdded
Gets the date of addition of media.
Declaration
public DateTimeOffset DateAdded { get; }
Property Value
| Type | Description |
|---|---|
| DateTimeOffset | The date of addition of media. |
DateModified
Gets the date of modification of media.
Declaration
public DateTimeOffset DateModified { get; }
Property Value
| Type | Description |
|---|---|
| DateTimeOffset | The date of modification of media. |
DisplayName
Gets the name of media.
Declaration
public string DisplayName { get; }
Property Value
| Type | Description |
|---|---|
| string | The base name of the media file. |
FileSize
Gets the file size of media in bytes.
Declaration
public long FileSize { get; }
Property Value
| Type | Description |
|---|---|
| long | The file size of media in bytes. |
Id
Gets the ID of media.
Declaration
public string Id { get; }
Property Value
| Type | Description |
|---|---|
| string | The unique ID of media. |
MediaType
Gets the MediaType of media.
Declaration
public MediaType MediaType { get; }
Property Value
| Type | Description |
|---|---|
| MediaType | The MediaType of media. |
MimeType
Gets the mime type from media.
Declaration
public string MimeType { get; }
Property Value
| Type | Description |
|---|---|
| string | The mime type of media. |
Path
Gets the path to media.
Declaration
public string Path { get; }
Property Value
| Type | Description |
|---|---|
| string | The full path of the media file. |
ThumbnailPath
Gets the thumbnail of media.
Declaration
public string ThumbnailPath { get; }
Property Value
| Type | Description |
|---|---|
| string | The thumbnail path of media. |
Title
Gets the title of media.
Declaration
public string Title { get; }
Property Value
| Type | Description |
|---|---|
| string | The title of media. |
Methods
View SourceToString()
Returns a string representation of the media information.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | A string representation of the current media information. |