Release 4.0.0-preview1-00201
[platform/core/csapi/tizenfx.git] / Artifacts / bin / public / Tizen.Content.MediaContent.xml
index 94eb00c..4fd67b7 100644 (file)
-<?xml version="1.0"?>
-<doc>
-    <assembly>
-        <name>Tizen.Content.MediaContent</name>
-    </assembly>
-    <members>
-        <member name="T:Tizen.Content.MediaContent.Album">
-            <summary>
-            Represents a logical collection grouping of related media information.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.AlbumCommand"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Album.Id">
-            <summary>
-            Gets the ID of the album.
-            </summary>
-            <value>The unique ID of the album.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Album.Artist">
-            <summary>
-            Gets the artist name of the album.
-            </summary>
-            <value>The artist name.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Album.AlbumArtPath">
-            <summary>
-            Gets the path to the album art.
-            </summary>
-            <value>The path to the album art.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Album.Name">
-            <summary>
-            Gets the name of the album.
-            </summary>
-            <value>The album name.</value>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.Album.ToString">
-            <summary>
-            Returns a string representation of the album.
-            </summary>
-            <returns>A string representation of the current album.</returns>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.AlbumCommand">
-            <summary>
-            Provides commands to manage albums in the database.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.Album"/>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.AlbumCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.AlbumCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.
-            </summary>
-            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>
-            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>
-            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.AlbumCommand.Count">
-            <summary>
-            Retrieves the number of albums.
-            </summary>
-            <returns>The number of albums.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.AlbumCommand.Count(Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of albums with <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.
-            </summary>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of albums.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.AlbumCommand.Select">
-            <summary>
-            Retrieves all the albums.
-            </summary>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.AlbumCommand.Select(Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the albums with <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="filter">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.AlbumCommand.Select(System.Int32)">
-            <summary>
-            Retrieves an album with the album ID.
-            </summary>
-            <param name="albumId">The ID of the album to query with.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.Album"/> if <paramref name="albumId"/> exists, otherwise null.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="albumId"/> is equal to or less than zero.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.AlbumCommand.CountMember(System.Int32)">
-            <summary>
-            Retrieves the number of media information that belongs to the album.
-            </summary>
-            <param name="albumId">The ID of the album to query with.</param>
-            <returns>The number of media information.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="albumId"/> is equal to or less than zero.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.AlbumCommand.CountMember(System.Int32,Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of media information that belongs to the album with <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.
-            </summary>
-            <param name="albumId">The ID of the album to count media.</param>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of media information.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="albumId"/> is equal to or less than zero.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.AlbumCommand.SelectMember(System.Int32)">
-            <summary>
-            Retrieves the media information of the album.
-            </summary>
-            <param name="albumId">The ID of the album to select media.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.AlbumCommand.SelectMember(System.Int32,Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the media information of the album with <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="albumId">The ID of the album to query with.</param>
-            <param name="filter">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.AudioInfo">
-            <summary>
-            Represents the audio media information.
-            </summary>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AudioInfo.Album">
-            <summary>
-            Gets the album name.
-            </summary>
-            <value>The album from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AudioInfo.Artist">
-            <summary>
-            Gets the artist name.
-            </summary>
-            <value>The artist from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AudioInfo.AlbumArtist">
-            <summary>
-            Gets the album artist name.
-            </summary>
-            <value>The album artist from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AudioInfo.Genre">
-            <summary>
-            Gets the genre.
-            </summary>
-            <value>The genre from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AudioInfo.Composer">
-            <summary>
-            Gets the composer.
-            </summary>
-            <value>The composer from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AudioInfo.Year">
-            <summary>
-            Gets the year.
-            </summary>
-            <value>The year from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AudioInfo.DateRecorded">
-            <summary>
-            Gets the recorded date.
-            </summary>
-            <value>The recorded date from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AudioInfo.Copyright">
-            <summary>
-            Gets the copyright.
-            </summary>
-            <value>The copyright from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AudioInfo.TrackNumber">
-            <summary>
-            Gets the track number.
-            </summary>
-            <value>The track number from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AudioInfo.BitRate">
-            <summary>
-            Gets the bit rate in bit per second.
-            </summary>
-            <value>The bit rate in bit per second.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AudioInfo.BitPerSample">
-            <summary>
-            Gets the bit per sample.
-            </summary>
-            <value>The bit per sample.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AudioInfo.SampleRate">
-            <summary>
-            Gets the sample rate in hertz.
-            </summary>
-            <value>The sample rate in hertz.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AudioInfo.Channels">
-            <summary>
-            Gets the number of channels.
-            </summary>
-            <value>The number of channels.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AudioInfo.Duration">
-            <summary>
-            Gets the track duration in milliseconds.
-            </summary>
-            <value>The track duration in milliseconds.</value>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.Bookmark">
-            <summary>
-            Represents the media bookmark that allows you to mark an interesting moment
-            in media (video and audio) to enable fast searching.
-            </summary>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Bookmark.Id">
-            <summary>
-            Gets the ID of the bookmark.
-            </summary>
-            <value>The ID of the bookmark.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Bookmark.ThumbnailPath">
-            <summary>
-            Gets the thumbnail path of the bookmark.
-            </summary>
-            <value>The thumbnail path of the bookmark.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Bookmark.Offset">
-            <summary>
-            Gets the offset in milliseconds.
-            </summary>
-            <value>The offset of the bookmark in media in milliseconds.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Bookmark.Name">
-            <summary>
-            Gets the name of the bookmark.
-            </summary>
-            <value>The name of the bookmark.</value>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.Bookmark.ToString">
-            <summary>
-            Returns a string representation of the bookmark.
-            </summary>
-            <returns>A string representation of the current bookmark.</returns>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.BookmarkCommand">
-            <summary>
-            Provides commands to manage bookmarks in the database.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.Bookmark"/>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.BookmarkCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.
-            </summary>
-            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>
-            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>
-            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Count">
-            <summary>
-            Retrieves the number of bookmarks.
-            </summary>
-            <returns>The number of bookmarks.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Count(Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of bookmarks with <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.
-            </summary>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of bookmarks.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Insert(System.String,System.Int32)">
-            <summary>
-            Inserts a new bookmark into the database with the specified media and offset.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="mediaId">The media ID to be associated with.</param>
-            <param name="offset">The time offset in milliseconds.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.Bookmark"/> instance that contains the record information inserted.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Insert(System.String,System.Int32,System.String)">
-            <summary>
-            Inserts a new bookmark into the database with the specified media ID, offset, and name.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="mediaId">The media ID to be associated with.</param>
-            <param name="offset">The time offset in milliseconds.</param>
-            <param name="name">The name of the bookmark. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.Bookmark"/> instance that contains the record information inserted.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Insert(System.String,System.Int32,System.String,System.String)">
-            <summary>
-            Inserts a new bookmark into the database with the specified media ID, offset, name, and thumbnail path.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <remarks>
-            The thumbnail may be useful only when the media is video.
-            </remarks>
-            <param name="mediaId">The media ID to be associated with.</param>
-            <param name="offset">The time offset in milliseconds.</param>
-            <param name="name">The name of the bookmark. This value can be null.</param>
-            <param name="thumbnailPath">The thumbnail path of the bookmark. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.Bookmark"/> instance that contains the record information inserted.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Delete(System.Int32)">
-            <summary>
-            Deletes a bookmark from the database.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="bookmarkId">The bookmark ID to delete.</param>
-            <returns>true if the matched record was found and deleted, otherwise false.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="bookmarkId"/> is less than zero.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Select">
-            <summary>
-            Retrieves the bookmarks.
-            </summary>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Select(Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the bookmarks with <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="filter">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.MediaInfoColumns">
-            <summary>
-            Provides the column names that can be used for Select and Count commands.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>
-            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>
-            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>
-            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>
-            <seealso cref="M:Tizen.Content.MediaContent.AlbumCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.AlbumCommand.CountMember(System.Int32,Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.AlbumCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.AlbumCommand.SelectMember(System.Int32,Tizen.Content.MediaContent.SelectArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.BookmarkCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.BookmarkCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.FaceInfoCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.FolderCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.FolderCommand.CountMedia(System.String,Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.FolderCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.FolderCommand.SelectMedia(System.String,Tizen.Content.MediaContent.SelectArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.CountMedia(Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectMedia(Tizen.Content.MediaContent.SelectArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.CountMember(System.Int32,Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.SelectMember(System.Int32,Tizen.Content.MediaContent.SelectArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.CountMedia(System.Int32,Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.SelectMedia(System.Int32,Tizen.Content.MediaContent.SelectArguments)"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Id">
-            <summary>
-            Gets the column name for the ID of media.
-            </summary>
-            <value>The column name for the ID of media.</value>
-            <remarks>The value type is string.</remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Id"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Path">
-            <summary>
-            Gets the column name for the path of media.
-            </summary>
-            <value>The column name for the file path of media.</value>
-            <remarks>The value type is string.</remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Path"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.DisplayName">
-            <summary>
-            Gets the column name for the display name of media.
-            </summary>
-            <value>The column name for the display name of media.</value>
-            <remarks>The value type is string.</remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.DisplayName"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.MediaType">
-            <summary>
-            Gets the column name for the type of media.
-            </summary>
-            <value>The column name for the type of media.</value>
-            <remarks>
-            The value type is integer.
-            The value should be an integer that is one of the <see cref="T:Tizen.Content.MediaContent.MediaType"/> values.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.MediaType"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.MimeType">
-            <summary>
-            Gets the column name for the mime type of media.
-            </summary>
-            <value>The column name for the mime type of media.</value>
-            <remarks>The value type is string.</remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.MimeType"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.FileSize">
-            <summary>
-            Gets the column name for the file size of media.
-            </summary>
-            <value>The column name for the file size of media.</value>
-            <remarks>The value type is integer.</remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.FileSize"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.DateAdded">
-            <summary>
-            Gets the column name for the date added of media.
-            </summary>
-            <value>The column name for the date added of media.</value>
-            <remarks>
-            The value type is integer.
-            <see cref="!:System.DateTimeOffset"/> needs to be converted into the unix time.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.DateAdded"/>
-            <seealso cref="!:System.DateTimeOffset.ToUnixTimeSeconds"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.DateModified">
-            <summary>
-            Gets the column name for the date modified of media.
-            </summary>
-            <value>The column name for the date modified of media.</value>
-            <remarks>
-            The value type is integer.
-            <see cref="!:System.DateTimeOffset"/> needs to be converted into the unix time.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.DateModified"/>
-            <seealso cref="!:System.DateTimeOffset.ToUnixTimeSeconds"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Timeline">
-            <summary>
-            Gets the column name for the timeline of media.
-            </summary>
-            <value>The column name for the timeline of media.</value>
-            <remarks>
-            The value type is integer.
-            <see cref="!:System.DateTimeOffset"/> needs to be converted into the unix time.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Timeline"/>
-            <seealso cref="!:System.DateTimeOffset.ToUnixTimeSeconds"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.ThumbnailPath">
-            <summary>
-            Gets the column name for the thumbnail path of media.
-            </summary>
-            <value>The column name for the thumbnail path of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.ThumbnailPath"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Title">
-            <summary>
-            Gets the column name for the title of media.
-            </summary>
-            <value>The column name for the title of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.ThumbnailPath"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Album">
-            <summary>
-            Gets the column name for the album of media.
-            </summary>
-            <value>The column name for the album of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Album"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Artist">
-            <summary>
-            Gets the column name for the artist of media.
-            </summary>
-            <value>The column name for the artist of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Artist"/>
-            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Artist"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.AlbumArtist">
-            <summary>
-            Gets the column name for the album artist of media.
-            </summary>
-            <value>The column name for the album artist of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.AlbumArtist"/>
-            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.AlbumArtist"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Genre">
-            <summary>
-            Gets the column name for the genre of media.
-            </summary>
-            <value>The column name for the genre of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Genre"/>
-            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Genre"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Composer">
-            <summary>
-            Gets the column name for the composer of media.
-            </summary>
-            <value>The column name for the composer of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Composer"/>
-            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Composer"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Year">
-            <summary>
-            Gets the column name for the year of media.
-            </summary>
-            <value>The column name for the year of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Year"/>
-            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Year"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.DateRecorded">
-            <summary>
-            Gets the column name for the date recorded of media.
-            </summary>
-            <value>The column name for the date recorded of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.DateRecorded"/>
-            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.DateRecorded"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Copyright">
-            <summary>
-            Gets the column name for the copyright of media.
-            </summary>
-            <value>The column name for the copyright of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Copyright"/>
-            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Copyright"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.TrackNumber">
-            <summary>
-            Gets the column name for the track number of media.
-            </summary>
-            <value>The column name for the track number of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.TrackNumber"/>
-            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.TrackNumber"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Description">
-            <summary>
-            Gets the column name for the description of media.
-            </summary>
-            <value>The column name for the description of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Description"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.BitRate">
-            <summary>
-            Gets the column name for the bit rate of media.
-            </summary>
-            <value>The column name for the bit rate of media.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.BitRate"/>
-            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.BitRate"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.BitPerSample">
-            <summary>
-            Gets the column name for the bit per sample of media.
-            </summary>
-            <value>The column name for the bit per sample of media.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.BitPerSample"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.SampleRate">
-            <summary>
-            Gets the column name for the sample rate of media.
-            </summary>
-            <value>The column name for the sample rate of media.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.SampleRate"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Channels">
-            <summary>
-            Gets the column name for the channels of media.
-            </summary>
-            <value>The column name for the channels of media.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Channels"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Duration">
-            <summary>
-            Gets the column name for the duration of media.
-            </summary>
-            <value>The column name for the duration of media.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Duration"/>
-            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Duration"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Longitude">
-            <summary>
-            Gets the column name for the longitude of media.
-            </summary>
-            <value>The column name for the longitude of media.</value>
-            <remarks>
-            The value type is real.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Longitude"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Latitude">
-            <summary>
-            Gets the column name for the latitude of media.
-            </summary>
-            <value>The column name for the latitude of media.</value>
-            <remarks>
-            The value type is real.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Latitude"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Altitude">
-            <summary>
-            Gets the column name for the altitude of media.
-            </summary>
-            <value>The column name for the altitude of media.</value>
-            <remarks>
-            The value type is real.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Altitude"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Width">
-            <summary>
-            Gets the column name for the width of media.
-            </summary>
-            <value>The column name for the width of media.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.Width"/>
-            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Width"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Height">
-            <summary>
-            Gets the column name for the height of media.
-            </summary>
-            <value>The column name for the height of media.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.Height"/>
-            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Height"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.DateTaken">
-            <summary>
-            Gets the column name for the date taken of media.
-            </summary>
-            <value>The column name for the date taken of media.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.DateTaken"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Orientation">
-            <summary>
-            Gets the column name for the orientation of media.
-            </summary>
-            <value>The column name for the orientation of media.</value>
-            <remarks>
-            The value type is integer.
-            The value should be an integer that is one of the <see cref="T:Tizen.Content.MediaContent.Orientation"/> values.
-            </remarks>
-            <seealso cref="T:Tizen.Content.MediaContent.Orientation"/>
-            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.Orientation"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.BurstId">
-            <summary>
-            Gets the column name for the burst ID of media.
-            </summary>
-            <value>The column name for the burst ID of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.BurstId"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Rating">
-            <summary>
-            Gets the column name for the rating of media.
-            </summary>
-            <value>The column name for the rating of media.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Rating"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Favorite">
-            <summary>
-            Gets the column name for the favorite status of media.
-            </summary>
-            <value>The column name for the favorite status of media.</value>
-            <remarks>
-            The value type is integer (1 : true, 0 : false).
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.IsFavorite"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Provider">
-            <summary>
-            Gets the column name for the provider of media.
-            </summary>
-            <value>The column name for the provider of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Provider"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Category">
-            <summary>
-            Gets the column name for the category of media.
-            </summary>
-            <value>The column name for the category of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Category"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.LocationTag">
-            <summary>
-            Gets the column name for the location tag of media.
-            </summary>
-            <value>The column name for the location tag of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.LocationTag"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.AgeRating">
-            <summary>
-            Gets the column name for the age rating of media.
-            </summary>
-            <value>The column name for the age rating of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.AgeRating"/>>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Weather">
-            <summary>
-            Gets the column name for the weather information of media.
-            </summary>
-            <value>The column name for the weather information of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Weather"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.IsDrm">
-            <summary>
-            Gets the column name for the drm of media.
-            </summary>
-            <value>The column name for the drm of media.</value>
-            <remarks>
-            The value type is integer (1 : true, 0 : false).
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.IsDrm"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.StorageType">
-            <summary>
-            Gets the column name for the storage type of media.
-            </summary>
-            <value>The column name for the storage type of media.</value>
-            <remarks>
-            The value type is integer.
-            The value should be an integer that is one of the <see cref="T:Tizen.Content.MediaContent.StorageType"/> values.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.StorageType"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.ExposureTime">
-            <summary>
-            Gets the column name for the exposure time of media.
-            </summary>
-            <value>The column name for the exposure time of media.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.ExposureTime"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.FNumber">
-            <summary>
-            Gets the column name for the FNumber of media.
-            </summary>
-            <value>The column name for the FNumber of media.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.FNumber"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Iso">
-            <summary>
-            Gets the column name for the ISO of media.
-            </summary>
-            <value>The column name for the ISO of media.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.Iso"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Model">
-            <summary>
-            Gets the column name for the model of media.
-            </summary>
-            <value>The column name for the model of media.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.Model"/>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.AlbumColumns">
-            <summary>
-            Provides the folder column names that can be used for Select and Count commands.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>
-            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>
-            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>
-            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>
-            <seealso cref="M:Tizen.Content.MediaContent.AlbumCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.AlbumCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AlbumColumns.Name">
-            <summary>
-            Gets the column name for the name of album.
-            </summary>
-            <value>The column name for the name of album.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Album.Name"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.AlbumColumns.Artist">
-            <summary>
-            Gets the column name for the artist of album.
-            </summary>
-            <value>The column name for the artist of album.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Album.Artist"/>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.FolderColumns">
-            <summary>
-            Provides the folder column names that can be used for Select and Count commands.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>
-            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>
-            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>
-            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>
-            <seealso cref="M:Tizen.Content.MediaContent.FolderCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.FolderCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.FolderColumns.Id">
-            <summary>
-            Gets the column name for the ID of folder.
-            </summary>
-            <value>The column name for the ID of folder.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Folder.Id"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.FolderColumns.Path">
-            <summary>
-            Gets the column name for the path of folder.
-            </summary>
-            <value>The column name for the path of folder.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Folder.Path"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.FolderColumns.Name">
-            <summary>
-            Gets the column name for the name of folder.
-            </summary>
-            <value>The column name for the name of folder.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Folder.Name"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.FolderColumns.StorageType">
-            <summary>
-            Gets the column name for the storage type of folder.
-            </summary>
-            <value>The column name for the storage type of folder.</value>
-            <remarks>
-            The value type is integer.
-            The value should be an integer that is one of the <see cref="T:Tizen.Content.MediaContent.StorageType"/> values.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Folder.StorageType"/>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.PlaylistColumns">
-            <summary>
-            Provides the playlist column names that can be used for Select and Count commands.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>
-            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>
-            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>
-            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>
-            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.PlaylistColumns.Name">
-            <summary>
-            Gets the column name for the name of playlist.
-            </summary>
-            <value>The column name for the name of playlist.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Playlist.Name"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.PlaylistColumns.Id">
-            <summary>
-            Gets the column name for the ID of playlist.
-            </summary>
-            <value>The column name for the ID of playlist.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Playlist.Id"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.PlaylistColumns.MemberOrder">
-            <summary>
-            Gets the column name for the member order of playlist.
-            </summary>
-            <value>The column name for the member order of playlist.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.UpdatePlayOrder(System.Int32,Tizen.Content.MediaContent.PlayOrder)"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.PlaylistColumns.Count">
-            <summary>
-            Gets the column name for the number of members of playlist.
-            </summary>
-            <value>The column name for the number of members of playlist.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.AddMember(System.Int32,System.String)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.RemoveMember(System.Int32,System.Int32)"/>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.TagColumns">
-            <summary>
-            Provides the tag column names that can be used for the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>
-            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>
-            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>
-            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>
-            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.CountTag(System.String,Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectTag(System.String,Tizen.Content.MediaContent.SelectArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.CountMedia(System.Int32,Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.SelectMedia(System.Int32,Tizen.Content.MediaContent.SelectArguments)"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.TagColumns.Name">
-            <summary>
-            Gets the column name for the name of tag.
-            </summary>
-            <value>The column name for the name of tag.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Tag.Name"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.TagColumns.Count">
-            <summary>
-            Gets the column name for the number of media of tag.
-            </summary>
-            <value>The column name for the number of media of tag.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.AddMedia(System.Int32,System.String)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.RemoveMedia(System.Int32,System.String)"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.TagColumns.Id">
-            <summary>
-            Gets the column name for the ID of tag.
-            </summary>
-            <value>The column name for the ID of tag.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Tag.Id"/>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.BookmarkColumns">
-            <summary>
-            Provides the bookmark column names that can be used for Select and Count commands.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>
-            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>
-            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>
-            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>
-            <seealso cref="M:Tizen.Content.MediaContent.BookmarkCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.BookmarkCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.CountBookmark(System.String,Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectBookmark(System.String,Tizen.Content.MediaContent.SelectArguments)"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.BookmarkColumns.Offset">
-            <summary>
-            Gets the column name for the offset of the bookmark.
-            </summary>
-            <value>The column name for the offset of the bookmark.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Bookmark.Offset"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.BookmarkColumns.Id">
-            <summary>
-            Gets the column name for the ID of the bookmark.
-            </summary>
-            <value>The column name for the ID of the bookmark.</value>
-            <remarks>
-            The value type is integer.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Bookmark.Id"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.BookmarkColumns.Name">
-            <summary>
-            Gets the column name for the name of the bookmark.
-            </summary>
-            <value>The column name for the name of the bookmark.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Bookmark.Name"/>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.FaceInfoColumns">
-            <summary>
-            Provides the face info column names that can be used for Select and Count commands.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>
-            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>
-            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>
-            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>
-            <seealso cref="M:Tizen.Content.MediaContent.FaceInfoCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.CountFaceInfo(System.String,Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectFaceInfo(System.String,Tizen.Content.MediaContent.SelectArguments)"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.FaceInfoColumns.Tag">
-            <summary>
-            Gets the column name for the tag of face information.
-            </summary>
-            <value>The column name for the tag of face information.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.FaceInfo.Tag"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.FaceInfoColumns.Id">
-            <summary>
-            Gets the column name for the ID of face information.
-            </summary>
-            <value>The column name for the ID of face information.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.FaceInfo.Id"/>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.StorageColumns">
-            <summary>
-            Provides the storage column names that can be used for Select and Count commands.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>
-            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>
-            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>
-            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>
-            <seealso cref="M:Tizen.Content.MediaContent.StorageCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>
-            <seealso cref="M:Tizen.Content.MediaContent.StorageCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.StorageColumns.Id">
-            <summary>
-            Gets the column name for the ID of storage.
-            </summary>
-            <value>The column name for the ID of storage.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Storage.Id"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.StorageColumns.Path">
-            <summary>
-            Gets the column name for the path of storage.
-            </summary>
-            <value>The column name for the path of storage.</value>
-            <remarks>
-            The value type is string.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Storage.Path"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.StorageColumns.Type">
-            <summary>
-            Gets the column name for the type of storage.
-            </summary>
-            <value>The column name for the type of storage.</value>
-            <remarks>
-            The value type is integer.
-            The value should be an integer that is one of the <see cref="T:Tizen.Content.MediaContent.StorageType"/> values.
-            </remarks>
-            <seealso cref="P:Tizen.Content.MediaContent.Storage.Type"/>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.Collation">
-            <summary>
-            Specifies how the strings are compared.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.Collation.Default">
-            <summary>
-            Default collation, binary.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.Collation.NoCase">
-            <summary>
-            Case-insensitive.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.Collation.Rtrim">
-            <summary>
-            Trailing space characters are ignored.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.Collation.Localized">
-            <summary>
-            Localized, NoCase also applied.
-            </summary>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.StorageType">
-            <summary>
-            Specifies the storage types.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.StorageType.Internal">
-            <summary>
-            The device's internal storage.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.StorageType.External">
-            <summary>
-            The device's external storage like SD card.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.StorageType.ExternalUsb">
-            <summary>
-            The external USB storage.
-            </summary>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.OperationType">
-            <summary>
-            Specifies database operation types.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.OperationType.Insert">
-            <summary>
-            Insert operation.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.OperationType.Delete">
-            <summary>
-            Delete operation.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.OperationType.Update">
-            <summary>
-            Update operation.
-            </summary>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.MediaType">
-            <summary>
-            Specifies types of the <see cref="T:Tizen.Content.MediaContent.MediaInfo"/>.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaType.Image">
-            <summary>
-            The type of an image.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.ImageInfo"/>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaType.Video">
-            <summary>
-            The type of a video.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.VideoInfo"/>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaType.Sound">
-            <summary>
-            The type of sound.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.AudioInfo"/>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaType.Music">
-            <summary>
-            The type of music.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.AudioInfo"/>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaType.Other">
-            <summary>
-            The type of other.
-            </summary>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.Orientation">
-            <summary>
-            Specifies orientation types of media.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.Orientation.Rotate0">
-            <summary>
-            None.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.Orientation.Normal">
-            <summary>
-            Normal.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.Orientation.Rotate90">
-            <summary>
-            Rotate 90 degrees.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.Orientation.Rotate180">
-            <summary>
-            Rotate 180 degrees.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.Orientation.Rotate270">
-            <summary>
-            Rotate 270 degrees.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.Orientation.FlipHorizontal">
-            <summary>
-            Flip horizontal.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.Orientation.FlipVertical">
-            <summary>
-            Flip vertical.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.Orientation.Transpose">
-            <summary>
-            Transpose.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.Orientation.Transverse">
-            <summary>
-            Transverse.
-            </summary>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs">
-            <summary>
-            Provides data for the <see cref="E:Tizen.Content.MediaContent.MediaDatabase.MediaInfoUpdated"/> event.
-            </summary>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs.ProcessId">
-            <summary>
-            Gets the process ID which triggers the event.
-            </summary>
-            <value>The process ID which triggers the event.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs.OperationType">
-            <summary>
-            Gets the operation type.
-            </summary>
-            <value>The operation type which triggers the event.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs.Id">
-            <summary>
-            Gets the ID of the media updated.
-            </summary>
-            <value>The ID of the media updated.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs.Path">
-            <summary>
-            Gets the path of the media updated.
-            </summary>
-            <value>The path of the media updated.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs.MediaType">
-            <summary>
-            Gets the type of the media updated.
-            </summary>
-            <value>The <see cref="P:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs.MediaType"/> of the media updated.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs.MimeType">
-            <summary>
-            The MIME type of the media updated.
-            </summary>
-            <value>The MIME type of the media updated.</value>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.FolderUpdatedEventArgs">
-            <summary>
-            Provides data for the <see cref="E:Tizen.Content.MediaContent.MediaDatabase.FolderUpdated"/> event.
-            </summary>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.FolderUpdatedEventArgs.OperationType">
-            <summary>
-            Gets the operation type.
-            </summary>
-            <value>The operation type which triggers the event.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.FolderUpdatedEventArgs.Id">
-            <summary>
-            Gets the ID of the folder updated.
-            </summary>
-            <value>The ID of the folder updated.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.FolderUpdatedEventArgs.Path">
-            <summary>
-            Gets the path of the folder updated.
-            </summary>
-            <value>The path of the folder updated.</value>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.FaceInfo">
-            <summary>
-            Represents the face information for the media.
-            </summary>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.FaceInfo.Rect">
-            <summary>
-            Gets the region.
-            </summary>
-            <value>The region of face in the media.</value>
-            <remarks>
-            The coordinates of the rectangle are orientation-applied values.
-            </remarks>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.FaceInfo.Id">
-            <summary>
-            Gets the ID of face information.
-            </summary>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.FaceInfo.MediaInfoId">
-            <summary>
-            Gets the media ID that the face information is added.
-            </summary>
-            <value>The media ID that the face information is added.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.FaceInfo.Tag">
-            <summary>
-            Gets the tag name.
-            </summary>
-            <value>The tag name of face information.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.FaceInfo.Orientation">
-            <summary>
-            Gets the orientation of face information.
-            </summary>
-            <value>The orientation of face information.</value>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FaceInfo.ToString">
-            <summary>
-            Returns a string representation of the face information.
-            </summary>
-            <returns>A string representation of the current face info.</returns>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.FaceInfoCommand">
-            <summary>
-            Provides commands to manage face information in the database.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.Album"/>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FaceInfoCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.FaceInfoCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.
-            </summary>
-            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>
-            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>
-            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FaceInfoCommand.Delete(System.String)">
-            <summary>
-            Deletes the face information from the database.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="faceInfoId">The face information ID to delete.</param>
-            <returns>true if the matched record was found and deleted, otherwise false.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="faceInfoId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="faceInfoId"/> is a zero-length string, contains only white space.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FaceInfoCommand.Select">
-            <summary>
-            Retrieves the face information.
-            </summary>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FaceInfoCommand.Select(Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the face information with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="filter">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FaceInfoCommand.UpdateTag(System.String,System.String)">
-            <summary>
-            Updates a tag with the specified tag.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="faceInfoId">The face information ID to update.</param>
-            <param name="tag">The tag value for update.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <remarks>Only values set in the <see cref="T:Tizen.Content.MediaContent.PlaylistUpdateValues"/> are updated.</remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="faceInfoId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="faceInfoId"/> is a zero-length string, contains only white space.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.Folder">
-            <summary>
-            Represents the folder information for the media.
-            </summary>
-            <remarks>
-            The <see cref="T:Tizen.Content.MediaContent.Folder"/> is used to organize media content files, i.e., image, audio, and video files,
-            in the physical storage of the device.
-            </remarks>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Folder.Id">
-            <summary>
-            Gets the ID of the folder.
-            </summary>
-            <value>The unique ID of the folder.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Folder.Path">
-            <summary>
-            Gets the path of the folder.
-            </summary>
-            <value>The path of the folder.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Folder.Name">
-            <summary>
-            Gets the name of the folder.
-            </summary>
-            <value>The name of the folder.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Folder.StorageType">
-            <summary>
-            Gets the <see cref="P:Tizen.Content.MediaContent.Folder.StorageType"/> of the storage that the folder exists.
-            </summary>
-            <value>The <see cref="P:Tizen.Content.MediaContent.Folder.StorageType"/> of the storage that the folder exists.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Folder.StorageId">
-            <summary>
-            Gets the storage ID of the storage that the folder exists.
-            </summary>
-            <value>The storage ID of the storage that the folder exists.</value>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.Folder.ToString">
-            <summary>
-            Returns a string representation of the folder.
-            </summary>
-            <returns>A string representation of the current folder.</returns>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.FolderCommand">
-            <summary>
-            Provides commands to manage folders and query related media items in the database.
-            </summary>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FolderCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.FolderCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.
-            </summary>
-            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>
-            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>
-            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FolderCommand.Count">
-            <summary>
-            Retrieves the number of folders.
-            </summary>
-            <returns>The number of folders.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FolderCommand.Count(Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of folders with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.
-            </summary>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of folders.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FolderCommand.Select">
-            <summary>
-            Retrieves the folders.
-            </summary>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FolderCommand.Select(Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the folders with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FolderCommand.Select(System.String)">
-            <summary>
-            Retrieves the folder.
-            </summary>
-            <param name="folderId">The folder ID to query with.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.Folder"/> instance if the matched record was found in the database, otherwise null.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="folderId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="folderId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FolderCommand.CountMedia(System.String)">
-            <summary>
-            Retrieves the number of media information under the folder.
-            </summary>
-            <param name="folderId">The ID of the folder to count media in the folder.</param>
-            <returns>The number of media information.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="folderId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="folderId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FolderCommand.CountMedia(System.String,Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of media information under the folder with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.
-            </summary>
-            <param name="folderId">The ID of the folder to count media in the folder.</param>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of media information.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="folderId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="folderId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FolderCommand.SelectMedia(System.String)">
-            <summary>
-            Retrieves the media information under the folder.
-            </summary>
-            <param name="folderId">The ID of the folder to select media in the folder.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="folderId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="folderId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.FolderCommand.SelectMedia(System.String,Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the media information under the folder with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="folderId">The ID of the folder to select media in the folder.</param>
-            <param name="filter">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="folderId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="folderId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.ImageInfo">
-            <summary>
-            Represents the image media stored in the device.
-            </summary>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.ImageInfo.Width">
-            <summary>
-            Gets the image width in pixels.
-            </summary>
-            <value>The image width in pixels.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.ImageInfo.Height">
-            <summary>
-            Gets the image height in pixels.
-            </summary>
-            <value>The image height in pixels.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.ImageInfo.Orientation">
-            <summary>
-            Gets the orientation of image.
-            </summary>
-            <value>The orientation of image.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.ImageInfo.DateTaken">
-            <summary>
-            Gets the date of the creation time as a formatted string.
-            </summary>
-            <value>The date of the creation time as a formatted string.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.ImageInfo.BurstId">
-            <summary>
-            Gets the burst shot ID.
-            </summary>
-            <value>The burst shot ID if it is a burst shot, otherwise an empty string.</value>
-            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.IsBurstShot"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.ImageInfo.ExposureTime">
-            <summary>
-            Gets the exposure time from EXIF.
-            </summary>
-            <value>The exposure time from EXIF.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.ImageInfo.FNumber">
-            <summary>
-            Gets the FNumber from EXIF.
-            </summary>
-            <value>The FNumber from exif.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.ImageInfo.Iso">
-            <summary>
-            Gets the ISO from EXIF.
-            </summary>
-            <value>The iso from EXIF.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.ImageInfo.Model">
-            <summary>
-            Gets the model from EXIF.
-            </summary>
-            <value>The model from EXIF.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.ImageInfo.IsBurstShot">
-            <summary>
-            Gets the value indicating whether the media is a burst shot image.
-            </summary>
-            <value>true if the media is a burst shot image, otherwise false.</value>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.MediaCommand">
-            <summary>
-            The <see cref="T:Tizen.Content.MediaContent.MediaCommand"/> is a base class for command classes.
-            </summary>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.MediaCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.
-            </summary>
-            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>
-            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>
-            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaCommand.Database">
-            <summary>
-            Gets the <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.
-            </summary>
-            <value>The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> which commands execute on.</value>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.IMediaDataReader">
-            <summary>
-            Provides a means of reading results obtained by executing a query.
-            </summary>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.IMediaDataReader.Read">
-            <summary>
-            Advances to the next record.
-            </summary>
-            <returns>true if there are more rows; otherwise false.</returns>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.IMediaDataReader.Current">
-            <summary>
-            Gets the current record.
-            </summary>
-            <value>The current record object.</value>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.MediaDataReader`1">
-            <summary>
-            Provides a means of reading results obtained by executing a query.
-            </summary>
-            <typeparam name="TRecord"></typeparam>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaDataReader`1.Current">
-            <summary>
-            Gets the current record.
-            </summary>
-            <value>The current record if the position is valid; otherwise null.</value>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaDataReader`1.Read">
-            <summary>
-            Advances to the next record.
-            </summary>
-            <returns>true if there are more rows; otherwise false.</returns>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaDataReader`1.Dispose(System.Boolean)">
-            <summary>
-            Disposes of the resources (other than memory) used by the MediaDataReader.
-            </summary>
-            <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaDataReader`1.Dispose">
-            <summary>
-            Releases all resources used by the current instance.
-            </summary>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.MediaDatabase">
-            <summary>
-            Provides the ability to connect to and manage the database.
-            </summary>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaDatabase.#ctor">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> class.
-            </summary>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaDatabase.Connect">
-            <summary>
-            Connects to the database.
-            </summary>
-            <exception cref="T:System.InvalidOperationException">The database is already connected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while connecting.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaDatabase.Disconnect">
-            <summary>
-            Disconnects from the media database.
-            </summary>
-            <exception cref="T:System.InvalidOperationException">The database is not connected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while connecting.</exception>
-        </member>
-        <member name="E:Tizen.Content.MediaContent.MediaDatabase.MediaInfoUpdated">
-            <summary>
-            Occurs when there is a change for media in the database.
-            </summary>
-        </member>
-        <member name="E:Tizen.Content.MediaContent.MediaDatabase.FolderUpdated">
-            <summary>
-            Occurs when there is a change for the folder in the database.
-            </summary>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaDatabase.ScanFile(System.String)">
-            <summary>
-            Requests to scan a media file.
-            </summary>
-            <param name="path">The path of the media to be scanned.</param>
-            <remarks>
-            It requests to scan a media file to the media server.\n
-            If the specified file is not registered to the database yet,
-            the media file information will be added to the database.\n
-            If it is already registered to the database, the media information is refreshed.\n
-            If the specified file does not exist,
-            the record of the media file will be deleted from the database.\n
-            \n
-            If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n
-            If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.
-            </remarks>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <privilege>http://tizen.org/privilege/mediastorage</privilege>
-            <privilege>http://tizen.org/privilege/externalstorage</privilege>
-            <exception cref="T:System.InvalidOperationException">The database is not connected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="path"/> is null.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="path"/> is a zero-length string, contains only white space.\n
-                -or-\n
-                <paramref name="path"/> contains a hidden path that starts with '.'.\n
-                -or-\n
-                <paramref name="path"/> contains a directory containing the ".scan_ignore" file.
-            </exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaDatabase.ScanFolderAsync(System.String)">
-            <summary>
-            Requests to scan a folder recursively.
-            </summary>
-            <remarks>
-                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n
-                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.
-            </remarks>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <privilege>http://tizen.org/privilege/mediastorage</privilege>
-            <privilege>http://tizen.org/privilege/externalstorage</privilege>
-            <param name="folderPath">The path to scan.</param>
-            <remarks>Folders that contains a file named ".scan_ignore" will not be scanned.</remarks>
-            <returns>A task that represents the asynchronous scan operation.</returns>
-            <exception cref="T:System.InvalidOperationException">The database is not connected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="folderPath"/> is null.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="folderPath"/> is a zero-length string, contains only white space.\n
-                -or-\n
-                <paramref name="folderPath"/> contains a hidden path that starts with '.'.\n
-                -or-\n
-                <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.
-            </exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaDatabase.ScanFolderAsync(System.String,System.Boolean)">
-            <summary>
-            Requests to scan a folder.
-            </summary>
-            <remarks>
-                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n
-                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.
-            </remarks>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <privilege>http://tizen.org/privilege/mediastorage</privilege>
-            <privilege>http://tizen.org/privilege/externalstorage</privilege>
-            <param name="folderPath">The path to scan.</param>
-            <param name="recursive">The value indicating if the folder is to be recursively scanned.</param>
-            <remarks>Folders that contains a file named ".scan_ignore" will not be scanned.</remarks>
-            <returns>A task that represents the asynchronous scan operation.</returns>
-            <exception cref="T:System.InvalidOperationException">The database is not connected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="folderPath"/> is null.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="folderPath"/> is a zero-length string, contains only white space.\n
-                -or-\n
-                <paramref name="folderPath"/> contains a hidden path that starts with '.'.\n
-                -or-\n
-                <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.
-            </exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaDatabase.ScanFolderAsync(System.String,System.Threading.CancellationToken)">
-            <summary>
-            Requests to scan a folder recursively.
-            </summary>
-            <remarks>
-                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n
-                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.
-            </remarks>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <privilege>http://tizen.org/privilege/mediastorage</privilege>
-            <privilege>http://tizen.org/privilege/externalstorage</privilege>
-            <param name="folderPath">The path to scan.</param>
-            <param name="cancellationToken">The token to stop scanning.</param>
-            <remarks>Folders that contains a file named ".scan_ignore" will not be scanned.</remarks>
-            <returns>A task that represents the asynchronous scan operation.</returns>
-            <exception cref="T:System.InvalidOperationException">The database is not connected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="folderPath"/> is null.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="folderPath"/> is a zero-length string, contains only white space.\n
-                -or-\n
-                <paramref name="folderPath"/> contains a hidden path that starts with '.'.\n
-                -or-\n
-                <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.
-            </exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaDatabase.ScanFolderAsync(System.String,System.Boolean,System.Threading.CancellationToken)">
-            <summary>
-            Requests to scan a folder recursively.
-            </summary>
-            <remarks>
-                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n
-                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.
-            </remarks>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <privilege>http://tizen.org/privilege/mediastorage</privilege>
-            <privilege>http://tizen.org/privilege/externalstorage</privilege>
-            <param name="folderPath">The path to scan.</param>
-            <param name="recursive">The value indicating if the folder is to be recursively scanned.</param>
-            <param name="cancellationToken">The token to stop scanning.</param>
-            <remarks>Folders that contains a file named ".scan_ignore" will not be scanned.</remarks>
-            <returns>A task that represents the asynchronous scan operation.</returns>
-            <exception cref="T:System.InvalidOperationException">The database is not connected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="folderPath"/> is null.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="folderPath"/> is a zero-length string, contains only white space.\n
-                -or-\n
-                <paramref name="folderPath"/> contains a hidden path that starts with '.'.\n
-                -or-\n
-                <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.
-            </exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaDatabase.Dispose(System.Boolean)">
-            <summary>
-            Disposes of the resources (other than memory) used by the MediaDatabase.
-            </summary>
-            <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaDatabase.Dispose">
-            <summary>
-            Releases all the resources.
-            </summary>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaDatabase.IsDisposed">
-            <summary>
-            Gets the value indicating whether the database has been disposed of.
-            </summary>
-            <value>true if the database has been disposed of; otherwise, false.</value>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.MediaDatabaseError">
-            <summary>
-            Specifies the database errors.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaDatabaseError.OperationFailed">
-            <summary>
-            Operation failed.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaDatabaseError.DatabaseBusy">
-            <summary>
-            Operation failed because the database is busy.
-            </summary>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.MediaDatabaseException">
-            <summary>
-            The exception that is thrown when a database operation failed.
-            </summary>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaDatabaseException.Error">
-            <summary>
-            Gets the error that causes the exception.
-            </summary>
-            <value>The <see cref="T:Tizen.Content.MediaContent.MediaDatabaseError"/> that causes the exception.</value>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.MediaInfo">
-            <summary>
-            Represents the information related to the media stored.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.MediaInfoCommand"/>
-            <seealso cref="T:Tizen.Content.MediaContent.MediaInfoUpdateValues"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.Id">
-            <summary>
-            Gets the ID of media.
-            </summary>
-            <value>The unique ID of media.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.Path">
-            <summary>
-            Gets the path to media.
-            </summary>
-            <value>The full path of the media file.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.DisplayName">
-            <summary>
-            Gets the name of media.
-            </summary>
-            <value>The base name of the media file.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.MediaType">
-            <summary>
-            Gets the <see cref="P:Tizen.Content.MediaContent.MediaInfo.MediaType"/> of media.
-            </summary>
-            <value>The <see cref="P:Tizen.Content.MediaContent.MediaInfo.MediaType"/> of media.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.MimeType">
-            <summary>
-            Gets the mime type from media.
-            </summary>
-            <value>The mime type of media.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.FileSize">
-            <summary>
-            Gets the file size of media in bytes.
-            </summary>
-            <value>The file size of media in bytes.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.DateAdded">
-            <summary>
-            Gets the date of addition of media.
-            </summary>
-            <value>The date of addition of media.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.DateModified">
-            <summary>
-            Gets the date of modification of media.
-            </summary>
-            <value>The date of modification of media.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.Timeline">
-            <summary>
-            Gets the timeline of media.
-            </summary>
-            <value>
-            The creation date if the file has the creation information (like recorded date or image creation date),
-            otherwise the modified date.
-            </value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.ThumbnailPath">
-            <summary>
-            Gets the thumbnail of media.
-            </summary>
-            <value>The thumbnail path of media.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.Description">
-            <summary>
-            Gets the description of media.
-            </summary>
-            <value>The description from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.Longitude">
-            <summary>
-            Gets the longitude of media.
-            </summary>
-            <value>The longitude.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.Latitude">
-            <summary>
-            Gets the latitude of media.
-            </summary>
-            <value>The latitude.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.Altitude">
-            <summary>
-            Gets the altitude of media.
-            </summary>
-            <value>The altitude.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.Weather">
-            <summary>
-            Gets the weather information of media.
-            </summary>
-            <value>The weather information which a user sets.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.Rating">
-            <summary>
-            Gets the rating of media.
-            </summary>
-            <value>The rating from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.IsFavorite">
-            <summary>
-            Gets the favorite status of media.
-            </summary>
-            <value>true if media is set as favorite, otherwise false.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.Provider">
-            <summary>
-            Gets the provider of media.
-            </summary>
-            <value>The provider which a user sets.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.Title">
-            <summary>
-            Gets the title of media.
-            </summary>
-            <value>The title of media.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.Category">
-            <summary>
-            Gets the category of media.
-            </summary>
-            <value>The category which a user sets.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.LocationTag">
-            <summary>
-            Gets the location tag of media.
-            </summary>
-            <value>The location tag which a user sets.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.AgeRating">
-            <summary>
-            Gets the age rating of media.
-            </summary>
-            <value>The age rating which a user sets.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.StorageId">
-            <summary>
-            Gets the storage ID of the storage that the media is stored on.
-            </summary>
-            <value>The storage ID of the storage that the media is stored on.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.IsDrm">
-            <summary>
-            Gets the value indicating whether the media is DRM-protected.
-            </summary>
-            <value>A bool value indicating whether the media is DRM-protected.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfo.StorageType">
-            <summary>
-            Gets the storage type of the storage that the media is stored on.
-            </summary>
-            <value>The storage type of the storage that the media is stored on.</value>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfo.ToString">
-            <summary>
-            Returns a string representation of the media information.
-            </summary>
-            <returns>A string representation of the current media information.</returns>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.MediaInfoColumnKey">
-            <summary>
-            Specifies the group keys for <see cref="T:Tizen.Content.MediaContent.MediaInfo"/>.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.DisplayName">
-            <summary>
-            Display name.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Type">
-            <summary>
-            Media type.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.MimeType">
-            <summary>
-            Mime type.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Size">
-            <summary>
-            File size.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.DateAdded">
-            <summary>
-            Date added.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.DateModified">
-            <summary>
-            Date modified.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Title">
-            <summary>
-            Content title.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Artist">
-            <summary>
-            Artist.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.AlbumArtist">
-            <summary>
-            Album artist.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Genre">
-            <summary>
-            Genre.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Composer">
-            <summary>
-            Composer.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Year">
-            <summary>
-            Year.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.DateRecorded">
-            <summary>
-            Date recorded.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Copyright">
-            <summary>
-            Copyright.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.TrackNumber">
-            <summary>
-            Track number.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Description">
-            <summary>
-            Description.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Longitude">
-            <summary>
-            Longitude.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Latitude">
-            <summary>
-            Latitude.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Altitude">
-            <summary>
-            Altitude.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.BurstImage">
-            <summary>
-            Burst shot.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Rating">
-            <summary>
-            Rating.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Provider">
-            <summary>
-            Provider.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Category">
-            <summary>
-            Category.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.LocationTag">
-            <summary>
-            Location tag.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.AgeRating">
-            <summary>
-            Age rating.
-            </summary>
-        </member>
-        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Weather">
-            <summary>
-            Weather.
-            </summary>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.MediaInfoCommand">
-            <summary>
-            Provides commands to manage the media information and query related items in the database.
-            </summary>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.FolderCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.
-            </summary>
-            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>
-            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>
-            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountBookmark(System.String)">
-            <summary>
-            Retrieves the number of the bookmarks added to the media.
-            </summary>
-            <param name="mediaId">The media ID to count the bookmarks added to the media.</param>
-            <returns>The number of the bookmarks.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountBookmark(System.String,Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of the bookmarks added to the media with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.
-            </summary>
-            <param name="mediaId">The media ID to count the bookmarks added to the media.</param>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of the bookmarks.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectBookmark(System.String)">
-            <summary>
-            Retrieves the bookmarks added to the media.
-            </summary>
-            <param name="mediaId">The media ID to select the bookmarks added to the media.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectBookmark(System.String,Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the bookmarks added to the media with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="mediaId">The media ID to select the bookmarks added to the media.</param>
-            <param name="filter">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountFaceInfo(System.String)">
-            <summary>
-            Retrieves the number of the face information added to or detected from the media.
-            </summary>
-            <param name="mediaId">The media ID to count face information added to the media.</param>
-            <returns>The number of the face information.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountFaceInfo(System.String,Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of the face information added to or detected from the media with filter.
-            </summary>
-            <param name="mediaId">The media ID to count the face information added to the media.</param>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of the face information.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectFaceInfo(System.String)">
-            <summary>
-            Retrieves the face information added to or detected from the media.
-            </summary>
-            <param name="mediaId">The media ID to select face information added to the media.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectFaceInfo(System.String,Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the face information added to or detected from the media with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="mediaId">The media ID to select the face information added to the media.</param>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountTag(System.String)">
-            <summary>
-            Retrieves the number of tags that the media has.
-            </summary>
-            <returns>The number of tags.</returns>
-            <param name="mediaId">The media ID to count tags added to the media.</param>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountTag(System.String,Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of tags that the media has with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.
-            </summary>
-            <param name="mediaId">The media ID to count tags added to the media.</param>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of tags.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectTag(System.String)">
-            <summary>
-            Retrieves the tags that the media has.
-            </summary>
-            <param name="mediaId">The media ID to select tags added to the media.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectTag(System.String,Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the tags that the media has with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="mediaId">The media ID to select tags added to the media.</param>
-            <param name="filter">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountMedia">
-            <summary>
-            Retrieves the number of the media information.
-            </summary>
-            <returns>The number of the media information.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountMedia(Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of the media information with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of media information.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectMedia(System.String)">
-            <summary>
-            Retrieves the media.
-            </summary>
-            <param name="mediaId">The media ID to retrieve.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaInfo"/> instance if the matched record was found in the database, otherwise null.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountGroupBy(Tizen.Content.MediaContent.MediaInfoColumnKey)">
-            <summary>
-            Retrieves the number of values grouped by the specified column with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="columnKey">The column key.</param>
-            <returns>The number of groups.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="columnKey"/> is invalid.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountGroupBy(Tizen.Content.MediaContent.MediaInfoColumnKey,Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of values grouped by the specified column with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="columnKey">The column key.</param>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of groups.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="columnKey"/> is invalid.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectGroupBy(Tizen.Content.MediaContent.MediaInfoColumnKey)">
-            <summary>
-            Retrieves the group values of the specified column.
-            </summary>
-            <param name="columnKey">The column key.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="columnKey"/> is invalid.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectGroupBy(Tizen.Content.MediaContent.MediaInfoColumnKey,Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the group values of the specified column with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="columnKey">The column key.</param>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="columnKey"/> is invalid.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectMedia">
-            <summary>
-            Retrieves all the media.
-            </summary>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectMedia(Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the media with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.Delete(System.String)">
-            <summary>
-            Deletes the media from the database.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="mediaId">The media ID to delete.</param>
-            <returns>true if the matched record was found and deleted, otherwise false.</returns>
-            <remarks>The <see cref="M:Tizen.Content.MediaContent.MediaDatabase.ScanFile(System.String)"/> or the <see cref="M:Tizen.Content.MediaContent.MediaDatabase.ScanFolderAsync(System.String)"/> can be used instead.</remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.Add(System.String)">
-            <summary>
-            Adds the media to the database.
-            </summary>
-            <param name="path">The file path to add.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaInfo"/> instance that contains the record information in the database.</returns>
-            <remarks>
-                If the media already exists in the database, it returns the existing information.\n
-                \n
-                The <see cref="M:Tizen.Content.MediaContent.MediaDatabase.ScanFile(System.String)"/> or the <see cref="M:Tizen.Content.MediaContent.MediaDatabase.ScanFolderAsync(System.String)"/> can be used instead.\n
-                \n
-                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n
-                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.
-            </remarks>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <privilege>http://tizen.org/privilege/mediastorage</privilege>
-            <privilege>http://tizen.org/privilege/externalstorage</privilege>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="path"/> is null.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="path"/> is a zero-length string, contains only white space.\n
-                -or-\n
-                <paramref name="path"/> contains a hidden path that starts with '.'.\n
-                -or-\n
-                <paramref name="path"/> contains a directory containing the ".scan_ignore" file.
-            </exception>
-            <exception cref="T:System.IO.FileNotFoundException"><paramref name="path"/> does not exists.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.AddAsync(System.Collections.Generic.IEnumerable{System.String})">
-            <summary>
-            Adds media files into the media database.
-            </summary>
-            <remarks>
-                The paths that already exist in the database will be ignored.\n
-                At most 300 items can be added at once.\n
-                \n
-                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n
-                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.
-            </remarks>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <privilege>http://tizen.org/privilege/mediastorage</privilege>
-            <privilege>http://tizen.org/privilege/externalstorage</privilege>
-            <param name="paths">The paths of the media files to add.</param>
-            <returns>A task that represents the asynchronous add operation.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="paths"/> is null.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="paths"/> contains null.\n
-                -or-\n
-                <paramref name="paths"/> contains the invalid path.\n
-                -or-\n
-                The number of <paramref name="paths"/> is 300 or more items.
-            </exception>
-            <exception cref="T:System.IO.FileNotFoundException"><paramref name="paths"/> contains a path that does not exist.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.AddBurstShotImagesAsync(System.Collections.Generic.IEnumerable{System.String})">
-            <summary>
-            Adds burst shot images into the media database.
-            </summary>
-            <param name="paths">The paths of the burst shot images to add.</param>
-            <returns>A task that represents the asynchronous add operation.</returns>
-            <remarks>
-                The paths that already exist in the database.\n
-                At most 300 items can be added at once.
-                \n
-                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n
-                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.
-            </remarks>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <privilege>http://tizen.org/privilege/mediastorage</privilege>
-            <privilege>http://tizen.org/privilege/externalstorage</privilege>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="paths"/> is null.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="paths"/> contains null.\n
-                -or-\n
-                <paramref name="paths"/> contains the invalid path.\n
-                -or-\n
-                The number of <paramref name="paths"/> is 300 or more items.
-            </exception>
-            <exception cref="T:System.IO.FileNotFoundException"><paramref name="paths"/> contains a path that does not exist.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.Update(System.String,Tizen.Content.MediaContent.MediaInfoUpdateValues)">
-            <summary>
-            Updates the media with the specified values.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="mediaId">The media ID to update.</param>
-            <param name="values">The values for update.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <remarks>Only values set in the <see cref="T:Tizen.Content.MediaContent.MediaInfoUpdateValues"/> are updated.</remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException">
-                <paramref name="mediaId"/> is null.\n
-                -or-\n
-                <paramref name="values"/> is null.
-            </exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.Move(System.String,System.String)">
-            <summary>
-            Updates the path of the media to the specified destination path in the database.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <privilege>http://tizen.org/privilege/mediastorage</privilege>
-            <privilege>http://tizen.org/privilege/externalstorage</privilege>
-            <param name="mediaId">The media ID to move.</param>
-            <param name="newPath">The path that the media has been moved to.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <remarks>
-                Usually, it is used after the media file is moved to the another path.\n
-                \n
-                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n
-                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.
-            </remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException">
-                <paramref name="mediaId"/> is null.\n
-                -or-\n
-                <paramref name="newPath"/> is null.
-            </exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="mediaId"/> is a zero-length string, contains only white space.\n
-                -or-\n
-                <paramref name="newPath"/> is a zero-length string, contains only white space.\n
-                -or-\n
-                <paramref name="newPath"/> contains a hidden directory that starts with '.'.\n
-                -or-\n
-                <paramref name="newPath"/> contains a directory containing the ".scan_ignore" file.
-            </exception>
-            <exception cref="T:System.IO.FileNotFoundException"><paramref name="newPath"/> does not exists.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CreateThumbnailAsync(System.String)">
-            <summary>
-            Creates the thumbnail image for the given media.
-            If the thumbnail already exists for the given media, the existing path will be returned.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="mediaId">The media ID to create the thumbnail.</param>
-            <returns>A task that represents the asynchronous operation. The task result contains the thumbnail path.</returns>
-            <exception cref="T:System.InvalidOperationException">
-                The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.\n
-                -or-\n
-                An internal error occurred while executing.
-            </exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.RecordNotFoundException"><paramref name="mediaId"/> does not exist in the database.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="mediaId"/> is a zero-length string, contains only white space.
-            </exception>
-            <exception cref="T:System.IO.FileNotFoundException">The file of the media does not exists; moved or deleted.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.UnsupportedContentException">
-                The thumbnail is not available for the given media.\n
-                -or-\n
-                The media is in the external USB storage (<see cref="P:Tizen.Content.MediaContent.MediaInfo.StorageType"/> is <see cref="F:Tizen.Content.MediaContent.StorageType.ExternalUsb"/>).
-            </exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CreateThumbnailAsync(System.String,System.Threading.CancellationToken)">
-            <summary>
-            Creates the thumbnail image for the given media.
-            If the thumbnail already exists for the given media, the existing path will be returned.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="mediaId">The media ID to create the thumbnail.</param>
-            <param name="cancellationToken">The token to cancel the operation.</param>
-            <returns>A task that represents the asynchronous operation. The task result contains the thumbnail path.</returns>
-            <exception cref="T:System.InvalidOperationException">
-                The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.\n
-                -or-\n
-                An internal error occurred while executing.
-            </exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.RecordNotFoundException"><paramref name="mediaId"/> does not exist in the database.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="mediaId"/> is a zero-length string, contains only white space.
-            </exception>
-            <exception cref="T:System.IO.FileNotFoundException">The file of the media does not exists; moved or deleted.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.UnsupportedContentException">
-                The thumbnail is not available for the given media.\n
-                -or-\n
-                The media is in the external USB storage (<see cref="P:Tizen.Content.MediaContent.MediaInfo.StorageType"/> is <see cref="F:Tizen.Content.MediaContent.StorageType.ExternalUsb"/>).
-            </exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.DetectFaceAsync(System.String)">
-            <summary>
-            Detects faces from the given media.
-            If the thumbnail already exists for the given media, the existing path will be returned.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <feature>http://tizen.org/feature/vision.face_recognition</feature>
-            <param name="mediaId">The media ID to create the thumbnail.</param>
-            <returns>A task that represents the asynchronous add operation. The task result contains the number of faces detected.</returns>
-            <exception cref="T:System.InvalidOperationException">
-                The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.\n
-                -or-\n
-                An internal error occurred while executing.
-            </exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.RecordNotFoundException"><paramref name="mediaId"/> does not exist in the database.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="mediaId"/> is a zero-length string, contains only white space.
-            </exception>
-            <exception cref="T:System.IO.FileNotFoundException">The file of the media does not exists; moved or deleted.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.UnsupportedContentException">Face detection is not available for the given media.</exception>
-            <exception cref="T:System.NotSupportedException">The required feature is not supported.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.DetectFaceAsync(System.String,System.Threading.CancellationToken)">
-            <summary>
-            Creates the thumbnail image for the given media.
-            If the thumbnail already exists for the given media, the existing path will be returned.
-            </summary>
-            <remarks>
-                Media in the external storage is not supported, with the exception of MMC.
-            </remarks>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <feature>http://tizen.org/feature/vision.face_recognition</feature>
-            <param name="mediaId">The media ID to create the thumbnail.</param>
-            <param name="cancellationToken">The token to cancel the operation.</param>
-            <returns>A task that represents the asynchronous operation. The task result contains the number of faces detected.</returns>
-            <exception cref="T:System.InvalidOperationException">
-                The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.\n
-                -or-\n
-                An internal error occurred while executing.
-            </exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.RecordNotFoundException"><paramref name="mediaId"/> does not exist in the database.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="mediaId"/> is a zero-length string, contains only white space.
-            </exception>
-            <exception cref="T:System.IO.FileNotFoundException">The file of the media does not exists; moved or deleted.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.UnsupportedContentException">
-                Face detection is not available for the given media.\n
-                -or-\n
-                The media is in the external USB storage (<see cref="P:Tizen.Content.MediaContent.MediaInfo.StorageType"/> is <see cref="F:Tizen.Content.MediaContent.StorageType.ExternalUsb"/>).
-            </exception>
-            <exception cref="T:System.NotSupportedException">The required feature is not supported.</exception>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.MediaInfoUpdateValues">
-            <summary>
-            Provides means to set values used for the update command.
-            </summary>
-            <remarks>
-            The values only set in the object will be affected to the update command.
-            </remarks>
-            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.Update(System.String,Tizen.Content.MediaContent.MediaInfoUpdateValues)"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdateValues.Weather">
-            <summary>
-            Gets or sets the weather information for an update.
-            </summary>
-            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>
-            <value>A string for weather; the field will not be updated if null.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdateValues.IsFavorite">
-            <summary>
-            Gets or sets the favorite status for an update.
-            </summary>
-            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>
-            <value>A value indicating whether the media is favorite; the field will not be updated if null.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdateValues.Provider">
-            <summary>
-            Gets or sets the provider information for an update.
-            </summary>
-            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>
-            <value>A string for provider; the field will not be updated if null.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdateValues.Category">
-            <summary>
-            Gets or sets the category information for an update.
-            </summary>
-            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>
-            <value>A string for category; the field will not be updated if null.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdateValues.LocationTag">
-            <summary>
-            Gets or sets the location tag for an update.
-            </summary>
-            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>
-            <value>A string for location tag; the field will not be updated if null.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdateValues.AgeRating">
-            <summary>
-            Gets or sets the age rating information for an update.
-            </summary>
-            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>
-            <value>A string for age rating; the field will not be updated if null.</value>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.Playlist">
-            <summary>
-            Represents the playlist that is a group of media (usually songs).
-            </summary>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Playlist.Id">
-            <summary>
-            Gets the ID of the playlist.
-            </summary>
-            <value>The unique ID of the playlist.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Playlist.Name">
-            <summary>
-            Gets the name of the playlist.
-            </summary>
-            <value>The name of the playlist.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Playlist.ThumbnailPath">
-            <summary>
-            Gets the path to the thumbnail.
-            </summary>
-            <value>The path to the thumbnail.</value>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.Playlist.ToString">
-            <summary>
-            Returns a string representation of the playlist.
-            </summary>
-            <returns>A string representation of the current playlist.</returns>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.PlaylistUpdateValues">
-            <summary>
-            Provides means to set values used for the update command.
-            </summary>
-            <remarks>
-            The values only set in the object will be affected to the update command.
-            </remarks>
-            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.Update(System.Int32,Tizen.Content.MediaContent.PlaylistUpdateValues)"/>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.PlaylistUpdateValues.Name">
-            <summary>
-            Gets or sets the name of the playlist for an update.
-            </summary>
-            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>
-            <value>A string for name; the field will not be updated if null.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.PlaylistUpdateValues.ThumbnailPath">
-            <summary>
-            Gets or sets the thumbnail path of the playlist for an update.
-            </summary>
-            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>
-            <value>A string for the thumbnail path; the field will not be updated if null.</value>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.PlayOrder">
-            <summary>
-            Represents an order of a member of the playlist.
-            </summary>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlayOrder.#ctor(System.Int32,System.Int32)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.Playlist"/> class with the specified member ID and the order value.
-            </summary>
-            <param name="memberId">The ID of the member.</param>
-            <param name="orderValue">The order value.</param>
-            <exception cref="T:System.ArgumentOutOfRangeException">
-                <paramref name="memberId"/> is less than or equal to zero.\n
-                -or-\n
-                <paramref name="orderValue"/> is less than zero.
-            </exception>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.PlayOrder.MemberId">
-            <summary>
-            Gets or sets the member ID.
-            </summary>
-            <value>The member ID.</value>
-            <exception cref="T:System.ArgumentOutOfRangeException">
-            <paramref name="value"/> is less than or equal to zero.
-            </exception>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.PlayOrder.Value">
-            <summary>
-            Gets or sets the value indicating the order of the member in the playlist.
-            </summary>
-            <value>An integer value indicating the order of the member in the playlist.</value>
-            <exception cref="T:System.ArgumentOutOfRangeException">
-                <paramref name="value"/> is less than zero.
-            </exception>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.PlaylistCommand">
-            <summary>
-            Provides the commands to manage playlists in the database.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.Playlist"/>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.PlaylistCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.
-            </summary>
-            <param name="database">A <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>
-            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>
-            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Count">
-            <summary>
-            Retrieves the number of playlists.
-            </summary>
-            <returns>The number of playlists.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Count(Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of playlists with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.
-            </summary>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of playlists.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.GetPlayOrder(System.Int32,System.Int32)">
-            <summary>
-            Retrieves the play order of the member.
-            </summary>
-            <param name="playlistId">The playlist ID.</param>
-            <param name="memberId">The member ID of the playlist.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException">
-                <paramref name="playlistId"/> is less than or equal to zero.\n
-                -or-\n
-                <paramref name="memberId"/> is less than or equal to zero.
-            </exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Delete(System.Int32)">
-            <summary>
-            Deletes a playlist from the database.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="playlistId">The playlist ID to delete.</param>
-            <returns>true if the matched record was found and deleted, otherwise false.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.InsertFromFile(System.String,System.String)">
-            <summary>
-            Inserts the playlist into the database from the specified M3U file.
-            </summary>
-            <remarks>
-                If you want to access an internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n
-                If you want to access an external storage, you should add privilege http://tizen.org/privilege/externalstorage.
-            </remarks>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <privilege>http://tizen.org/privilege/mediastorage</privilege>
-            <privilege>http://tizen.org/privilege/externalstorage</privilege>
-            <param name="name">The name of the playlist.</param>
-            <param name="path">The path to a M3U file to import.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.Playlist"/> instance that contains the record information inserted.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException">
-                <paramref name="name"/> is null.\n
-                -or-\n
-                <paramref name="path"/> is null.
-            </exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="name"/> is a zero-length string.\n
-                -or-\n
-                <paramref name="path"/> is a zero-length string, contains only white space.
-            </exception>
-            <exception cref="T:System.IO.FileNotFoundException"><paramref name="path"/> does not exists.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.ExportToFile(System.Int32,System.String)">
-            <summary>
-            Exports the playlist to a M3U file.
-            </summary>
-            <remarks>
-                If the file already exists in the file system, then it will be overwritten.\n
-                \n
-                If you want to access an internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n
-                If you want to access an external storage, you should add privilege http://tizen.org/privilege/externalstorage.
-            </remarks>
-            <privilege>http://tizen.org/privilege/mediastorage</privilege>
-            <privilege>http://tizen.org/privilege/externalstorage</privilege>
-            <param name="playlistId">The playlist ID to export.</param>
-            <param name="path">The path to a M3U file.</param>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="path"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="path"/> is a zero-length string, contains only white space.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.RecordNotFoundException">No matching playlist exists.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Insert(System.String)">
-            <summary>
-            Inserts the playlist into the database with the specified name.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="name">The name of the playlist.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.Playlist"/> instance that contains the record information inserted.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="name"/> is a zero-length string.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Insert(System.String,System.String)">
-            <summary>
-            Inserts the playlist into the database with the specified name and the thumbnail path.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="name">The name of the playlist.</param>
-            <param name="thumbnailPath">The path of the thumbnail for the playlist. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.Playlist"/> instance that contains the record information inserted.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="name"/> is a zero-length string.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Select">
-            <summary>
-            Retrieves the playlists.
-            </summary>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Select(Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the playlists with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="filter">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Select(System.Int32)">
-            <summary>
-            Retrieves the playlist with the specified playlist ID.
-            </summary>
-            <param name="playlistId">The playlist ID to select.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.Playlist"/> instance if the matched record was found in the database, otherwise null.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.CountMember(System.Int32)">
-            <summary>
-            Retrieves the number of media information of the playlist.
-            </summary>
-            <param name="playlistId">The playlist ID to count media added to the playlist.</param>
-            <returns>The number of media information.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.CountMember(System.Int32,Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of media information of the playlist with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.
-            </summary>
-            <param name="playlistId">The playlist ID to count the media added to the playlist.</param>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of media information.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.GetMemberId(System.Int32,System.String)">
-            <summary>
-            Retrieves the member ID of the media in the playlist.
-            </summary>
-            <param name="playlistId">The playlist ID.</param>
-            <param name="mediaId">The media ID.</param>
-            <returns>The member ID if the member was found in the playlist, otherwise -1.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.SelectMember(System.Int32)">
-            <summary>
-            Retrieves the media information of the playlist.
-            </summary>
-            <param name="playlistId">The playlist ID to query with.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.SelectMember(System.Int32,Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the media information of the playlist with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="playlistId">The playlist ID to query with.</param>
-            <param name="filter">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Update(System.Int32,Tizen.Content.MediaContent.PlaylistUpdateValues)">
-            <summary>
-            Updates the playlist with the specified values.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="playlistId">The playlist ID to update.</param>
-            <param name="values">The values for the update.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <remarks>Only values set in the <see cref="T:Tizen.Content.MediaContent.PlaylistUpdateValues"/> are updated.</remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="values"/> is null.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.AddMember(System.Int32,System.String)">
-            <summary>
-            Adds the media to the playlist.
-            </summary>
-            <param name="playlistId">The playlist ID that the media will be added to.</param>
-            <param name="mediaId">The media ID to add to the playlist.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <remarks>The invalid media ID will be ignored.</remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.AddMembers(System.Int32,System.Collections.Generic.IEnumerable{System.String})">
-            <summary>
-            Adds the media set to the playlist.
-            </summary>
-            <param name="playlistId">The playlist ID that the media will be added to.</param>
-            <param name="mediaIds">The collection of media ID to add to the playlist.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <remarks>The invalid media IDs will be ignored.</remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaIds"/> is null.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="mediaIds"/> has no element.\n
-                -or-\n
-                <paramref name="mediaIds"/> contains null value.\n
-                -or-\n
-                <paramref name="mediaIds"/> contains a zero-length string or white space.\n
-            </exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.RemoveMember(System.Int32,System.Int32)">
-            <summary>
-            Removes a member from the playlist.
-            </summary>
-            <param name="playlistId">The playlist ID.</param>
-            <param name="memberId">The member ID to be removed.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <remarks>The invalid ID will be ignored.</remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException">
-                <paramref name="playlistId"/> is less than or equal to zero.\n
-                -or-\n
-                <paramref name="memberId"/> is less than or equal to zero.\n
-            </exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.RemoveMembers(System.Int32,System.Collections.Generic.IEnumerable{System.Int32})">
-            <summary>
-            Removes a media set from the playlist.
-            </summary>
-            <param name="playlistId">The playlist ID.</param>
-            <param name="memberIds">The collection of member ID to remove from to the playlist.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <remarks>The invalid IDs will be ignored.</remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="memberIds"/> is null.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="memberIds"/> has no element.\n
-                -or-\n
-                <paramref name="memberIds"/> contains a value which is less than or equal to zero.
-            </exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.UpdatePlayOrder(System.Int32,Tizen.Content.MediaContent.PlayOrder)">
-            <summary>
-            Updates a play order of the playlist.
-            </summary>
-            <param name="playlistId">The playlist ID.</param>
-            <param name="playOrder">The <see cref="T:Tizen.Content.MediaContent.PlayOrder"/> to apply.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <remarks>The <see cref="P:Tizen.Content.MediaContent.PlayOrder.MemberId"/> that is invalid will be ignored.</remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="playOrder"/> is null.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.UpdatePlayOrders(System.Int32,System.Collections.Generic.IEnumerable{Tizen.Content.MediaContent.PlayOrder})">
-            <summary>
-            Updates play orders of the playlist.
-            </summary>
-            <param name="playlistId">The playlist ID.</param>
-            <param name="orders">The collection of the <see cref="T:Tizen.Content.MediaContent.PlayOrder"/> to apply.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <remarks>The <see cref="P:Tizen.Content.MediaContent.PlayOrder.MemberId"/> that is invalid will be ignored.</remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="orders"/> is null.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="orders"/> has no element.\n
-                -or-\n
-                <paramref name="orders"/> contains a null value.
-            </exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.PlaylistMember">
-            <summary>
-            Represents a member of the <see cref="T:Tizen.Content.MediaContent.Playlist"/>.
-            </summary>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.PlaylistMember.MemberId">
-            <summary>
-            Gets the member ID.
-            </summary>
-            <value>The member ID of the playlist.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.PlaylistMember.MediaInfo">
-            <summary>
-            Gets the media information of the member.
-            </summary>
-            <value>The <see cref="P:Tizen.Content.MediaContent.PlaylistMember.MediaInfo"/> of the member.</value>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.QueryArguments">
-            <summary>
-            The Base class for query arguments.
-            </summary>
-            <remarks>
-            A filter is required for filtering information associated with Album, Folder, Tag, Bookmark, Playlist,
-            and MediaInfo on the basis of details like limit, order, and condition.
-            </remarks>
-        </member>
-        <!-- Badly formed XML comment ignored for member "P:Tizen.Content.MediaContent.QueryArguments.FilterExpression" -->
-        <member name="P:Tizen.Content.MediaContent.QueryArguments.StorageId">
-            <summary>
-            Gets or sets the storage ID for the given filter.
-            You can use this property when you want to search items only in the specific storage.
-            </summary>
-            <value>The storage ID to restrict storage to search, or null for all storages.</value>
-            <exception cref="T:System.ArgumentException"><paramref name="value"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.SelectArguments">
-            <summary>
-            Provides the ability to filter the result of a Select command.
-            </summary>
-            <remarks>
-            A filter is required for filtering information associated with Album, Folder, Tag, Bookmark, Playlist,
-            and MediaInfo.
-            </remarks>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.SelectArguments.StartRowIndex">
-            <summary>
-            Gets or sets the starting row position of a query (starting from zero).
-            </summary>
-            <value>An integer value that indicates the starting row position of a query.</value>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="value"/> is less than zero.\n</exception>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.SelectArguments.TotalRowCount">
-            <summary>
-            Gets or sets the number of rows to be retrieved.
-            </summary>
-            <value>An integer value that indicates the limit of rows of the result.</value>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="value"/> is less than zero.</exception>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.SelectArguments.SortOrder">
-            <summary>
-            Gets or sets the sort order of the results.
-            </summary>
-            <value>The expression for the sort order.</value>
-            <remarks>
-            Expressions for the sort order can be:\n
-            column [COLLATE NOCASE/RTRIM/LOCALIZED] [ASC/DESC], column2 ...
-            </remarks>
-            <exception cref="T:System.ArgumentException"><paramref name="value"/> is a zero-length string, contains only white space.</exception>
-            <seealso cref="T:Tizen.Content.MediaContent.MediaInfoColumns"/>
-            <seealso cref="T:Tizen.Content.MediaContent.AlbumColumns"/>
-            <seealso cref="T:Tizen.Content.MediaContent.FolderColumns"/>
-            <seealso cref="T:Tizen.Content.MediaContent.PlaylistColumns"/>
-            <seealso cref="T:Tizen.Content.MediaContent.TagColumns"/>
-            <seealso cref="T:Tizen.Content.MediaContent.BookmarkColumns"/>
-            <seealso cref="T:Tizen.Content.MediaContent.FaceInfoColumns"/>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.CountArguments">
-            <summary>
-            Provides the ability to filter the result of the Count command.
-            </summary>
-            <remarks>
-            A filter is required for filtering information associated with Album, Folder, Tag, Bookmark, Playlist,
-            and MediaInfo.
-            </remarks>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.RecordNotFoundException">
-            <summary>
-            The exception that is thrown when no record is found in the database.
-            </summary>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.RecordNotFoundException.#ctor">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.RecordNotFoundException"/> class.
-            </summary>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.RecordNotFoundException.#ctor(System.String)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.RecordNotFoundException"/> class with a specified error message.
-            </summary>
-            <param name="message">The message that describes the error.</param>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.RecordNotFoundException.#ctor(System.String,System.Exception)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.RecordNotFoundException"/> class with a specified error message
-            and a reference to the inner exception that is the cause of this exception.
-            </summary>
-            <param name="message">The message that describes the error.</param>
-            <param name="innerException">The exception that is the cause of the current exception.</param>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.Rectangle">
-            <summary>
-            Represents the location of the object bounded by the rectangle defined by
-            coordinates of top left corner, width, and height.
-            </summary>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.Rectangle.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
-            <summary>
-            Initializes a new instance of the rectangle with the specified values.
-            </summary>
-            <param name="x">The x-coordinate of the upper-left corner of the rectangle.</param>
-            <param name="y">The y-coordinate of the upper-left corner of the rectangle.</param>
-            <param name="width">The width of the rectangle.</param>
-            <param name="height">The height of the rectangle.</param>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Rectangle.X">
-            <summary>
-            Gets or sets the x-coordinate of the upper-left corner of the rectangle.
-            </summary>
-            <value>The x-coordinate of the upper-left edge of the rectangle.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Rectangle.Y">
-            <summary>
-            Gets or sets the y-coordinate of the upper-left corner of the rectangle.
-            </summary>
-            <value>The y-coordinate of the upper-left edge of the rectangle.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Rectangle.Width">
-            <summary>
-            Gets or sets the width of the rectangle.
-            </summary>
-            <value>The width of the rectangle.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Rectangle.Height">
-            <summary>
-            Gets or sets the height of the rectangle.
-            </summary>
-            <value>The height of the rectangle.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Rectangle.Left">
-            <summary>
-            Gets the x-coordinate of the left edge of the rectangle.
-            </summary>
-            <value>The x-coordinate of the left edge of the rectangle.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Rectangle.Top">
-            <summary>
-            Gets the y-coordinate of the top edge of the rectangle.
-            </summary>
-            <value>The y-coordinate of the top edge of the rectangle.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Rectangle.Right">
-            <summary>
-            Gets the x-coordinate of the right edge of the rectangle.
-            </summary>
-            <value>The x-coordinate of the right edge of the rectangle.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Rectangle.Bottom">
-            <summary>
-            Gets the y-coordinate of the bottom edge of the rectangle.
-            </summary>
-            <value>The y-coordinate of the bottom edge of the rectangle.</value>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.Rectangle.ToString">
-            <summary>
-            Returns a string representation of the rectangle.
-            </summary>
-            <returns>A string representation of the current rectangle.</returns>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.Rectangle.GetHashCode">
-            <summary>
-            Returns the hash code for this rectangle structure.
-            </summary>
-            <returns>An integer that represents the hash code for this rectangle.</returns>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.Rectangle.Equals(System.Object)">
-            <summary>
-            Tests whether object is a rectangle structure with the same location and size of this rectangle structure.
-            </summary>
-            <param name="obj">The <see cref="T:System.Object"/> to compare.</param>
-            <returns>
-            true if object is a rectangle structure and its x, y, width, and height properties are
-            equal to the corresponding properties of this rectangle structure; otherwise, false.
-            </returns>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.Rectangle.op_Equality(Tizen.Content.MediaContent.Rectangle,Tizen.Content.MediaContent.Rectangle)">
-            <summary>
-            Tests whether two rectangle structures have equal location and size.
-            </summary>
-            <param name="rect1">The <see cref="T:Tizen.Content.MediaContent.Rectangle"/> to compare.</param>
-            <param name="rect2">The <see cref="T:Tizen.Content.MediaContent.Rectangle"/> to compare.</param>
-            <returns>true if the two rectangle structures have equal x, y, width, and height properties; otherwise, false.</returns>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.Rectangle.op_Inequality(Tizen.Content.MediaContent.Rectangle,Tizen.Content.MediaContent.Rectangle)">
-            <summary>
-            Tests whether two rectangle structures differ in location or size.
-            </summary>
-            <param name="rect1">The <see cref="T:Tizen.Content.MediaContent.Rectangle"/> to compare.</param>
-            <param name="rect2">The <see cref="T:Tizen.Content.MediaContent.Rectangle"/> to compare.</param>
-            <returns>true if any of the x, y, width, or height properties of the two rectangle structures are unequal; otherwise false.</returns>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.Storage">
-            <summary>
-            Represents the storage information for media.
-            </summary>
-            <remarks>
-            The system generates the storage ID when the external storage is added and manages the media information
-            in each of the storage by using the storage ID.
-            </remarks>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Storage.Id">
-            <summary>
-            Gets the ID of the storage.
-            </summary>
-            <value>The unique ID of the storage.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Storage.Path">
-            <summary>
-            Gets the path of the storage.
-            </summary>
-            <value>The path of the storage.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Storage.Type">
-            <summary>
-            Gets the type of the storage.
-            </summary>
-            <value>The type of the storage.</value>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.Storage.ToString">
-            <summary>
-            Returns a string representation of the storage.
-            </summary>
-            <returns>A string representation of the current storage.</returns>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.StorageCommand">
-            <summary>
-            Provides the commands to manage external storages in the database.
-            </summary>
-            <remarks>
-            The internal storage is not managed.
-            </remarks>
-            <seealso cref="T:Tizen.Content.MediaContent.Storage"/>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.StorageCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.StorageCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.
-            </summary>
-            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>
-            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>
-            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.StorageCommand.Count">
-            <summary>
-            Retrieves the number of storages.
-            </summary>
-            <returns>The number of storages.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.StorageCommand.Count(Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of storages with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.
-            </summary>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of storages filtered.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.StorageCommand.Select(System.String)">
-            <summary>
-            Retrieves the storage with the specified ID.
-            </summary>
-            <param name="storageId">The storage ID to select.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.Storage"/> instance if the matched record was found in the database, otherwise null.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="storageId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="storageId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.StorageCommand.Select">
-            <summary>
-            Retrieves all the storages.
-            </summary>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.StorageCommand.Select(Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the storages with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.StorageCommand.CountMedia(System.String)">
-            <summary>
-            Retrieves the number of media information of the storage.
-            </summary>
-            <param name="storageId">The storage ID.</param>
-            <returns>The number of media information.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="storageId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="storageId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.StorageCommand.CountMedia(System.String,Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of media information of the storage with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.
-            </summary>
-            <param name="storageId">The storage ID to query with.</param>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of media information.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="storageId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="storageId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.StorageCommand.SelectMedia(System.String)">
-            <summary>
-            Retrieves the media information of the storage.
-            </summary>
-            <param name="storageId">The storage ID.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="storageId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="storageId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.StorageCommand.SelectMedia(System.String,Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the media information of the storage with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="storageId">The storage ID.</param>
-            <param name="filter">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="storageId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="storageId"/> is a zero-length string, contains only white space.</exception>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.Tag">
-            <summary>
-            Represents a special piece of information that may be associated with media.
-            Tagging allows a user to organize large number of items into logical groups providing
-            a simplified and faster way of accessing media items.
-            </summary>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Tag.Id">
-            <summary>
-            Gets the ID of the tag.
-            </summary>
-            <value>The unique ID of the tag.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.Tag.Name">
-            <summary>
-            Gets the name of the tag.
-            </summary>
-            <value>The name of the tag.</value>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.Tag.ToString">
-            <summary>
-            Returns a string representation of the tag.
-            </summary>
-            <returns>A string representation of the current tag.</returns>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.TagCommand">
-            <summary>
-            Provides the commands to manage tags in the database.
-            </summary>
-            <seealso cref="T:Tizen.Content.MediaContent.Tag"/>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.TagCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.
-            </summary>
-            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>
-            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>
-            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.Count">
-            <summary>
-            Retrieves the number of tags.
-            </summary>
-            <returns>The number of tags.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.Count(Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of tags with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.
-            </summary>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of tags filtered.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.Delete(System.Int32)">
-            <summary>
-            Deletes a tag from the database.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="tagId">The tag ID to delete.</param>
-            <returns>true if the matched record was found and deleted, otherwise false.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.Insert(System.String)">
-            <summary>
-            Inserts a tag into the database with the specified name.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="name">The name of tag.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.Tag"/> instance that contains the record information inserted.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is null.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.UpdateName(System.Int32,System.String)">
-            <summary>
-            Updates a tag with the specified name.
-            </summary>
-            <privilege>http://tizen.org/privilege/content.write</privilege>
-            <param name="tagId">The tag ID to update.</param>
-            <param name="name">The new name.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is null.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.Select(System.Int32)">
-            <summary>
-            Retrieves the tag with the specified ID.
-            </summary>
-            <param name="tagId">The tag ID to select.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.Tag"/> instance if the matched record was found in the database, otherwise null.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.Select">
-            <summary>
-            Retrieves all the tags.
-            </summary>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.Select(Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the tags with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.CountMedia(System.Int32)">
-            <summary>
-            Retrieves the number of media info of the tag.
-            </summary>
-            <param name="tagId">The tag ID.</param>
-            <returns>The number of the media information.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.CountMedia(System.Int32,Tizen.Content.MediaContent.CountArguments)">
-            <summary>
-            Retrieves the number of the media information of the tag with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.
-            </summary>
-            <param name="tagId">The tag ID to query with.</param>
-            <param name="arguments">The criteria to use to filter. This value can be null.</param>
-            <returns>The number of the media information.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.SelectMedia(System.Int32)">
-            <summary>
-            Retrieves the media information of the tag.
-            </summary>
-            <param name="tagId">The tag ID.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.SelectMedia(System.Int32,Tizen.Content.MediaContent.SelectArguments)">
-            <summary>
-            Retrieves the media information of the tag with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.
-            </summary>
-            <param name="tagId">The tag ID.</param>
-            <param name="filter">The criteria to use to filter. This value can be null.</param>
-            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.AddMedia(System.Int32,System.String)">
-            <summary>
-            Adds the media to a tag.
-            </summary>
-            <param name="tagId">The tag ID that the media will be added to.</param>
-            <param name="mediaId">The media ID to add to the tag.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <remarks>The invalid media ID will be ignored.</remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.AddMedia(System.Int32,System.Collections.Generic.IEnumerable{System.String})">
-            <summary>
-            Adds the media set to a tag.
-            </summary>
-            <param name="tagId">The tag ID that the media will be added to.</param>
-            <param name="mediaIds">The media ID to add to the tag.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <remarks>The invalid media IDs will be ignored.</remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaIds"/> is null.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="mediaIds"/> has no element.\n
-                -or-\n
-                <paramref name="mediaIds"/> contains null value.\n
-                -or-\n
-                <paramref name="mediaIds"/> contains a zero-length string, contains only white space.\n
-            </exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.RemoveMedia(System.Int32,System.String)">
-            <summary>
-            Removes the media from a tag.
-            </summary>
-            <param name="tagId">The tag ID.</param>
-            <param name="mediaId">The media ID to remove from the tag.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <remarks>The invalid media ID will be ignored.</remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>
-            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.TagCommand.RemoveMedia(System.Int32,System.Collections.Generic.IEnumerable{System.String})">
-            <summary>
-            Removes the media set from a tag.
-            </summary>
-            <param name="tagId">The tag ID.</param>
-            <param name="mediaIds">The collection of media ID to remove from the tag.</param>
-            <returns>true if the matched record was found and updated, otherwise false.</returns>
-            <remarks>The invalid IDs will be ignored.</remarks>
-            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>
-            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>
-            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>
-            <exception cref="T:System.ArgumentNullException"><paramref name="mediaIds"/> is null.</exception>
-            <exception cref="T:System.ArgumentException">
-                <paramref name="mediaIds"/> has no element.\n
-                -or-\n
-                <paramref name="mediaIds"/> contains null value.\n
-                -or-\n
-                <paramref name="mediaIds"/> contains a zero-length string or white space.\n
-            </exception>
-            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.UnsupportedContentException">
-            <summary>
-            The exception that is thrown when a requested operation is not supported for content.
-            </summary>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.UnsupportedContentException.#ctor">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.UnsupportedContentException"/> class.
-            </summary>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.UnsupportedContentException.#ctor(System.String)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.UnsupportedContentException"/> class with a specified error message.
-            </summary>
-            <param name="message">The message that describes the error.</param>
-        </member>
-        <member name="M:Tizen.Content.MediaContent.UnsupportedContentException.#ctor(System.String,System.Exception)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.UnsupportedContentException"/> class with a specified error message
-            and a reference to the inner exception that is the cause of this exception.
-            </summary>
-            <param name="message">The message that describes the error.</param>
-            <param name="innerException">The exception that is the cause of the current exception.</param>
-        </member>
-        <member name="T:Tizen.Content.MediaContent.VideoInfo">
-            <summary>
-            Represents a video media information.
-            </summary>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.VideoInfo.Album">
-            <summary>
-            Gets the album name.
-            </summary>
-            <value>The album name from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.VideoInfo.Artist">
-            <summary>
-            Gets the artist name.
-            </summary>
-            <value>The artist name from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.VideoInfo.AlbumArtist">
-            <summary>
-            Gets the album artist name.
-            </summary>
-            <value>The album artist name from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.VideoInfo.Genre">
-            <summary>
-            Gets the genre.
-            </summary>
-            <value>The genre name from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.VideoInfo.Composer">
-            <summary>
-            Gets the composer name.
-            </summary>
-            <value>The composer name from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.VideoInfo.Year">
-            <summary>
-            Gets the year.
-            </summary>
-            <value>The year from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.VideoInfo.DateRecorded">
-            <summary>
-            Gets the recorded date.
-            </summary>
-            <value>The recorded date information from the metadata if exists; otherwise, the modified date of the file.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.VideoInfo.Copyright">
-            <summary>
-            Gets the copyright notice.
-            </summary>
-            <value>The copyright notice from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.VideoInfo.TrackNumber">
-            <summary>
-            Gets the track number.
-            </summary>
-            <value>The track number from the metadata.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.VideoInfo.BitRate">
-            <summary>
-            Gets the bitrate in bit per second.
-            </summary>
-            <value>The bit rate of the video.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.VideoInfo.Duration">
-            <summary>
-            Gets the track duration in milliseconds.
-            </summary>
-            <value>The track duration of the video in milliseconds.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.VideoInfo.Width">
-            <summary>
-            Gets the video width in pixels.
-            </summary>
-            <value>The width of the video in pixels.</value>
-        </member>
-        <member name="P:Tizen.Content.MediaContent.VideoInfo.Height">
-            <summary>
-            Gets the video height in pixels.
-            </summary>
-            <value>The height of the video in pixels.</value>
-        </member>
-    </members>
-</doc>
+<?xml version="1.0"?>\r
+<doc>\r
+    <assembly>\r
+        <name>Tizen.Content.MediaContent</name>\r
+    </assembly>\r
+    <members>\r
+        <member name="T:Tizen.Content.MediaContent.Album">\r
+            <summary>\r
+            Represents a logical collection grouping of related media information.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.AlbumCommand"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Album.Id">\r
+            <summary>\r
+            Gets the ID of the album.\r
+            </summary>\r
+            <value>The unique ID of the album.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Album.Artist">\r
+            <summary>\r
+            Gets the artist name of the album.\r
+            </summary>\r
+            <value>The artist name.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Album.AlbumArtPath">\r
+            <summary>\r
+            Gets the path to the album art.\r
+            </summary>\r
+            <value>The path to the album art.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Album.Name">\r
+            <summary>\r
+            Gets the name of the album.\r
+            </summary>\r
+            <value>The album name.</value>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.Album.ToString">\r
+            <summary>\r
+            Returns a string representation of the album.\r
+            </summary>\r
+            <returns>A string representation of the current album.</returns>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.AlbumCommand">\r
+            <summary>\r
+            Provides commands to manage albums in the database.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.Album"/>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.AlbumCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.AlbumCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.\r
+            </summary>\r
+            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>\r
+            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.AlbumCommand.Count">\r
+            <summary>\r
+            Retrieves the number of albums.\r
+            </summary>\r
+            <returns>The number of albums.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.AlbumCommand.Count(Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of albums with <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.\r
+            </summary>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of albums.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.AlbumCommand.Select">\r
+            <summary>\r
+            Retrieves all the albums.\r
+            </summary>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.AlbumCommand.Select(Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the albums with <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="filter">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.AlbumCommand.Select(System.Int32)">\r
+            <summary>\r
+            Retrieves an album with the album ID.\r
+            </summary>\r
+            <param name="albumId">The ID of the album to query with.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.Album"/> if <paramref name="albumId"/> exists, otherwise null.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="albumId"/> is equal to or less than zero.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.AlbumCommand.CountMember(System.Int32)">\r
+            <summary>\r
+            Retrieves the number of media information that belongs to the album.\r
+            </summary>\r
+            <param name="albumId">The ID of the album to query with.</param>\r
+            <returns>The number of media information.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="albumId"/> is equal to or less than zero.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.AlbumCommand.CountMember(System.Int32,Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of media information that belongs to the album with <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.\r
+            </summary>\r
+            <param name="albumId">The ID of the album to count media.</param>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of media information.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="albumId"/> is equal to or less than zero.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.AlbumCommand.SelectMember(System.Int32)">\r
+            <summary>\r
+            Retrieves the media information of the album.\r
+            </summary>\r
+            <param name="albumId">The ID of the album to select media.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.AlbumCommand.SelectMember(System.Int32,Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the media information of the album with <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="albumId">The ID of the album to query with.</param>\r
+            <param name="filter">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.AudioInfo">\r
+            <summary>\r
+            Represents the audio media information.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AudioInfo.Album">\r
+            <summary>\r
+            Gets the album name.\r
+            </summary>\r
+            <value>The album from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AudioInfo.Artist">\r
+            <summary>\r
+            Gets the artist name.\r
+            </summary>\r
+            <value>The artist from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AudioInfo.AlbumArtist">\r
+            <summary>\r
+            Gets the album artist name.\r
+            </summary>\r
+            <value>The album artist from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AudioInfo.Genre">\r
+            <summary>\r
+            Gets the genre.\r
+            </summary>\r
+            <value>The genre from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AudioInfo.Composer">\r
+            <summary>\r
+            Gets the composer.\r
+            </summary>\r
+            <value>The composer from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AudioInfo.Year">\r
+            <summary>\r
+            Gets the year.\r
+            </summary>\r
+            <value>The year from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AudioInfo.DateRecorded">\r
+            <summary>\r
+            Gets the recorded date.\r
+            </summary>\r
+            <value>The recorded date from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AudioInfo.Copyright">\r
+            <summary>\r
+            Gets the copyright.\r
+            </summary>\r
+            <value>The copyright from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AudioInfo.TrackNumber">\r
+            <summary>\r
+            Gets the track number.\r
+            </summary>\r
+            <value>The track number from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AudioInfo.BitRate">\r
+            <summary>\r
+            Gets the bit rate in bit per second.\r
+            </summary>\r
+            <value>The bit rate in bit per second.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AudioInfo.BitPerSample">\r
+            <summary>\r
+            Gets the bit per sample.\r
+            </summary>\r
+            <value>The bit per sample.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AudioInfo.SampleRate">\r
+            <summary>\r
+            Gets the sample rate in hertz.\r
+            </summary>\r
+            <value>The sample rate in hertz.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AudioInfo.Channels">\r
+            <summary>\r
+            Gets the number of channels.\r
+            </summary>\r
+            <value>The number of channels.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AudioInfo.Duration">\r
+            <summary>\r
+            Gets the track duration in milliseconds.\r
+            </summary>\r
+            <value>The track duration in milliseconds.</value>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.Bookmark">\r
+            <summary>\r
+            Represents the media bookmark that allows you to mark an interesting moment\r
+            in media (video and audio) to enable fast searching.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Bookmark.Id">\r
+            <summary>\r
+            Gets the ID of the bookmark.\r
+            </summary>\r
+            <value>The ID of the bookmark.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Bookmark.ThumbnailPath">\r
+            <summary>\r
+            Gets the thumbnail path of the bookmark.\r
+            </summary>\r
+            <value>The thumbnail path of the bookmark.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Bookmark.Offset">\r
+            <summary>\r
+            Gets the offset in milliseconds.\r
+            </summary>\r
+            <value>The offset of the bookmark in media in milliseconds.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Bookmark.Name">\r
+            <summary>\r
+            Gets the name of the bookmark.\r
+            </summary>\r
+            <value>The name of the bookmark.</value>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.Bookmark.ToString">\r
+            <summary>\r
+            Returns a string representation of the bookmark.\r
+            </summary>\r
+            <returns>A string representation of the current bookmark.</returns>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.BookmarkCommand">\r
+            <summary>\r
+            Provides commands to manage bookmarks in the database.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.Bookmark"/>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.BookmarkCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.\r
+            </summary>\r
+            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>\r
+            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Count">\r
+            <summary>\r
+            Retrieves the number of bookmarks.\r
+            </summary>\r
+            <returns>The number of bookmarks.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Count(Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of bookmarks with <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.\r
+            </summary>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of bookmarks.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Insert(System.String,System.Int32)">\r
+            <summary>\r
+            Inserts a new bookmark into the database with the specified media and offset.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="mediaId">The media ID to be associated with.</param>\r
+            <param name="offset">The time offset in milliseconds.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.Bookmark"/> instance that contains the record information inserted.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Insert(System.String,System.Int32,System.String)">\r
+            <summary>\r
+            Inserts a new bookmark into the database with the specified media ID, offset, and name.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="mediaId">The media ID to be associated with.</param>\r
+            <param name="offset">The time offset in milliseconds.</param>\r
+            <param name="name">The name of the bookmark. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.Bookmark"/> instance that contains the record information inserted.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Insert(System.String,System.Int32,System.String,System.String)">\r
+            <summary>\r
+            Inserts a new bookmark into the database with the specified media ID, offset, name, and thumbnail path.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <remarks>\r
+            The thumbnail may be useful only when the media is video.\r
+            </remarks>\r
+            <param name="mediaId">The media ID to be associated with.</param>\r
+            <param name="offset">The time offset in milliseconds.</param>\r
+            <param name="name">The name of the bookmark. This value can be null.</param>\r
+            <param name="thumbnailPath">The thumbnail path of the bookmark. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.Bookmark"/> instance that contains the record information inserted.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Delete(System.Int32)">\r
+            <summary>\r
+            Deletes a bookmark from the database.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="bookmarkId">The bookmark ID to delete.</param>\r
+            <returns>true if the matched record was found and deleted, otherwise false.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="bookmarkId"/> is less than zero.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Select">\r
+            <summary>\r
+            Retrieves the bookmarks.\r
+            </summary>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.BookmarkCommand.Select(Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the bookmarks with <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="filter">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.MediaInfoColumns">\r
+            <summary>\r
+            Provides the column names that can be used for Select and Count commands.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.AlbumCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.AlbumCommand.CountMember(System.Int32,Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.AlbumCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.AlbumCommand.SelectMember(System.Int32,Tizen.Content.MediaContent.SelectArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.BookmarkCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.BookmarkCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.FaceInfoCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.FolderCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.FolderCommand.CountMedia(System.String,Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.FolderCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.FolderCommand.SelectMedia(System.String,Tizen.Content.MediaContent.SelectArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.CountMedia(Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectMedia(Tizen.Content.MediaContent.SelectArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.CountMember(System.Int32,Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.SelectMember(System.Int32,Tizen.Content.MediaContent.SelectArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.CountMedia(System.Int32,Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.SelectMedia(System.Int32,Tizen.Content.MediaContent.SelectArguments)"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Id">\r
+            <summary>\r
+            Gets the column name for the ID of media.\r
+            </summary>\r
+            <value>The column name for the ID of media.</value>\r
+            <remarks>The value type is string.</remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Id"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Path">\r
+            <summary>\r
+            Gets the column name for the path of media.\r
+            </summary>\r
+            <value>The column name for the file path of media.</value>\r
+            <remarks>The value type is string.</remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Path"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.DisplayName">\r
+            <summary>\r
+            Gets the column name for the display name of media.\r
+            </summary>\r
+            <value>The column name for the display name of media.</value>\r
+            <remarks>The value type is string.</remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.DisplayName"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.MediaType">\r
+            <summary>\r
+            Gets the column name for the type of media.\r
+            </summary>\r
+            <value>The column name for the type of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            The value should be an integer that is one of the <see cref="T:Tizen.Content.MediaContent.MediaType"/> values.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.MediaType"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.MimeType">\r
+            <summary>\r
+            Gets the column name for the mime type of media.\r
+            </summary>\r
+            <value>The column name for the mime type of media.</value>\r
+            <remarks>The value type is string.</remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.MimeType"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.FileSize">\r
+            <summary>\r
+            Gets the column name for the file size of media.\r
+            </summary>\r
+            <value>The column name for the file size of media.</value>\r
+            <remarks>The value type is integer.</remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.FileSize"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.DateAdded">\r
+            <summary>\r
+            Gets the column name for the date added of media.\r
+            </summary>\r
+            <value>The column name for the date added of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            <see cref="!:System.DateTimeOffset"/> needs to be converted into the unix time.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.DateAdded"/>\r
+            <seealso cref="!:System.DateTimeOffset.ToUnixTimeSeconds"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.DateModified">\r
+            <summary>\r
+            Gets the column name for the date modified of media.\r
+            </summary>\r
+            <value>The column name for the date modified of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            <see cref="!:System.DateTimeOffset"/> needs to be converted into the unix time.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.DateModified"/>\r
+            <seealso cref="!:System.DateTimeOffset.ToUnixTimeSeconds"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Timeline">\r
+            <summary>\r
+            Gets the column name for the timeline of media.\r
+            </summary>\r
+            <value>The column name for the timeline of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            <see cref="!:System.DateTimeOffset"/> needs to be converted into the unix time.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Timeline"/>\r
+            <seealso cref="!:System.DateTimeOffset.ToUnixTimeSeconds"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.ThumbnailPath">\r
+            <summary>\r
+            Gets the column name for the thumbnail path of media.\r
+            </summary>\r
+            <value>The column name for the thumbnail path of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.ThumbnailPath"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Title">\r
+            <summary>\r
+            Gets the column name for the title of media.\r
+            </summary>\r
+            <value>The column name for the title of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.ThumbnailPath"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Album">\r
+            <summary>\r
+            Gets the column name for the album of media.\r
+            </summary>\r
+            <value>The column name for the album of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Album"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Artist">\r
+            <summary>\r
+            Gets the column name for the artist of media.\r
+            </summary>\r
+            <value>The column name for the artist of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Artist"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Artist"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.AlbumArtist">\r
+            <summary>\r
+            Gets the column name for the album artist of media.\r
+            </summary>\r
+            <value>The column name for the album artist of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.AlbumArtist"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.AlbumArtist"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Genre">\r
+            <summary>\r
+            Gets the column name for the genre of media.\r
+            </summary>\r
+            <value>The column name for the genre of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Genre"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Genre"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Composer">\r
+            <summary>\r
+            Gets the column name for the composer of media.\r
+            </summary>\r
+            <value>The column name for the composer of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Composer"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Composer"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Year">\r
+            <summary>\r
+            Gets the column name for the year of media.\r
+            </summary>\r
+            <value>The column name for the year of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Year"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Year"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.DateRecorded">\r
+            <summary>\r
+            Gets the column name for the date recorded of media.\r
+            </summary>\r
+            <value>The column name for the date recorded of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.DateRecorded"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.DateRecorded"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Copyright">\r
+            <summary>\r
+            Gets the column name for the copyright of media.\r
+            </summary>\r
+            <value>The column name for the copyright of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Copyright"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Copyright"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.TrackNumber">\r
+            <summary>\r
+            Gets the column name for the track number of media.\r
+            </summary>\r
+            <value>The column name for the track number of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.TrackNumber"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.TrackNumber"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Description">\r
+            <summary>\r
+            Gets the column name for the description of media.\r
+            </summary>\r
+            <value>The column name for the description of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Description"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.BitRate">\r
+            <summary>\r
+            Gets the column name for the bit rate of media.\r
+            </summary>\r
+            <value>The column name for the bit rate of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.BitRate"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.BitRate"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.BitPerSample">\r
+            <summary>\r
+            Gets the column name for the bit per sample of media.\r
+            </summary>\r
+            <value>The column name for the bit per sample of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.BitPerSample"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.SampleRate">\r
+            <summary>\r
+            Gets the column name for the sample rate of media.\r
+            </summary>\r
+            <value>The column name for the sample rate of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.SampleRate"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Channels">\r
+            <summary>\r
+            Gets the column name for the channels of media.\r
+            </summary>\r
+            <value>The column name for the channels of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Channels"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Duration">\r
+            <summary>\r
+            Gets the column name for the duration of media.\r
+            </summary>\r
+            <value>The column name for the duration of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.AudioInfo.Duration"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Duration"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Longitude">\r
+            <summary>\r
+            Gets the column name for the longitude of media.\r
+            </summary>\r
+            <value>The column name for the longitude of media.</value>\r
+            <remarks>\r
+            The value type is real.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Longitude"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Latitude">\r
+            <summary>\r
+            Gets the column name for the latitude of media.\r
+            </summary>\r
+            <value>The column name for the latitude of media.</value>\r
+            <remarks>\r
+            The value type is real.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Latitude"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Altitude">\r
+            <summary>\r
+            Gets the column name for the altitude of media.\r
+            </summary>\r
+            <value>The column name for the altitude of media.</value>\r
+            <remarks>\r
+            The value type is real.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Altitude"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Width">\r
+            <summary>\r
+            Gets the column name for the width of media.\r
+            </summary>\r
+            <value>The column name for the width of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.Width"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Width"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Height">\r
+            <summary>\r
+            Gets the column name for the height of media.\r
+            </summary>\r
+            <value>The column name for the height of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.Height"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.VideoInfo.Height"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.DateTaken">\r
+            <summary>\r
+            Gets the column name for the date taken of media.\r
+            </summary>\r
+            <value>The column name for the date taken of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.DateTaken"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Orientation">\r
+            <summary>\r
+            Gets the column name for the orientation of media.\r
+            </summary>\r
+            <value>The column name for the orientation of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            The value should be an integer that is one of the <see cref="T:Tizen.Content.MediaContent.Orientation"/> values.\r
+            </remarks>\r
+            <seealso cref="T:Tizen.Content.MediaContent.Orientation"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.Orientation"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.BurstId">\r
+            <summary>\r
+            Gets the column name for the burst ID of media.\r
+            </summary>\r
+            <value>The column name for the burst ID of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.BurstId"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Rating">\r
+            <summary>\r
+            Gets the column name for the rating of media.\r
+            </summary>\r
+            <value>The column name for the rating of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Rating"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Favorite">\r
+            <summary>\r
+            Gets the column name for the favorite status of media.\r
+            </summary>\r
+            <value>The column name for the favorite status of media.</value>\r
+            <remarks>\r
+            The value type is integer (1 : true, 0 : false).\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.IsFavorite"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Provider">\r
+            <summary>\r
+            Gets the column name for the provider of media.\r
+            </summary>\r
+            <value>The column name for the provider of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Provider"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Category">\r
+            <summary>\r
+            Gets the column name for the category of media.\r
+            </summary>\r
+            <value>The column name for the category of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Category"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.LocationTag">\r
+            <summary>\r
+            Gets the column name for the location tag of media.\r
+            </summary>\r
+            <value>The column name for the location tag of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.LocationTag"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.AgeRating">\r
+            <summary>\r
+            Gets the column name for the age rating of media.\r
+            </summary>\r
+            <value>The column name for the age rating of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.AgeRating"/>>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Weather">\r
+            <summary>\r
+            Gets the column name for the weather information of media.\r
+            </summary>\r
+            <value>The column name for the weather information of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.Weather"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.IsDrm">\r
+            <summary>\r
+            Gets the column name for the drm of media.\r
+            </summary>\r
+            <value>The column name for the drm of media.</value>\r
+            <remarks>\r
+            The value type is integer (1 : true, 0 : false).\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.IsDrm"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.StorageType">\r
+            <summary>\r
+            Gets the column name for the storage type of media.\r
+            </summary>\r
+            <value>The column name for the storage type of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            The value should be an integer that is one of the <see cref="T:Tizen.Content.MediaContent.StorageType"/> values.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.MediaInfo.StorageType"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.ExposureTime">\r
+            <summary>\r
+            Gets the column name for the exposure time of media.\r
+            </summary>\r
+            <value>The column name for the exposure time of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.ExposureTime"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.FNumber">\r
+            <summary>\r
+            Gets the column name for the FNumber of media.\r
+            </summary>\r
+            <value>The column name for the FNumber of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.FNumber"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Iso">\r
+            <summary>\r
+            Gets the column name for the ISO of media.\r
+            </summary>\r
+            <value>The column name for the ISO of media.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.Iso"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoColumns.Model">\r
+            <summary>\r
+            Gets the column name for the model of media.\r
+            </summary>\r
+            <value>The column name for the model of media.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.Model"/>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.AlbumColumns">\r
+            <summary>\r
+            Provides the folder column names that can be used for Select and Count commands.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.AlbumCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.AlbumCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AlbumColumns.Name">\r
+            <summary>\r
+            Gets the column name for the name of album.\r
+            </summary>\r
+            <value>The column name for the name of album.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Album.Name"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.AlbumColumns.Artist">\r
+            <summary>\r
+            Gets the column name for the artist of album.\r
+            </summary>\r
+            <value>The column name for the artist of album.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Album.Artist"/>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.FolderColumns">\r
+            <summary>\r
+            Provides the folder column names that can be used for Select and Count commands.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.FolderCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.FolderCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.FolderColumns.Id">\r
+            <summary>\r
+            Gets the column name for the ID of folder.\r
+            </summary>\r
+            <value>The column name for the ID of folder.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Folder.Id"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.FolderColumns.Path">\r
+            <summary>\r
+            Gets the column name for the path of folder.\r
+            </summary>\r
+            <value>The column name for the path of folder.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Folder.Path"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.FolderColumns.Name">\r
+            <summary>\r
+            Gets the column name for the name of folder.\r
+            </summary>\r
+            <value>The column name for the name of folder.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Folder.Name"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.FolderColumns.StorageType">\r
+            <summary>\r
+            Gets the column name for the storage type of folder.\r
+            </summary>\r
+            <value>The column name for the storage type of folder.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            The value should be an integer that is one of the <see cref="T:Tizen.Content.MediaContent.StorageType"/> values.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Folder.StorageType"/>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.PlaylistColumns">\r
+            <summary>\r
+            Provides the playlist column names that can be used for Select and Count commands.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.PlaylistColumns.Name">\r
+            <summary>\r
+            Gets the column name for the name of playlist.\r
+            </summary>\r
+            <value>The column name for the name of playlist.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Playlist.Name"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.PlaylistColumns.Id">\r
+            <summary>\r
+            Gets the column name for the ID of playlist.\r
+            </summary>\r
+            <value>The column name for the ID of playlist.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Playlist.Id"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.PlaylistColumns.MemberOrder">\r
+            <summary>\r
+            Gets the column name for the member order of playlist.\r
+            </summary>\r
+            <value>The column name for the member order of playlist.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.UpdatePlayOrder(System.Int32,Tizen.Content.MediaContent.PlayOrder)"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.PlaylistColumns.Count">\r
+            <summary>\r
+            Gets the column name for the number of members of playlist.\r
+            </summary>\r
+            <value>The column name for the number of members of playlist.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.AddMember(System.Int32,System.String)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.RemoveMember(System.Int32,System.Int32)"/>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.TagColumns">\r
+            <summary>\r
+            Provides the tag column names that can be used for the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.CountTag(System.String,Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectTag(System.String,Tizen.Content.MediaContent.SelectArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.CountMedia(System.Int32,Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.SelectMedia(System.Int32,Tizen.Content.MediaContent.SelectArguments)"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.TagColumns.Name">\r
+            <summary>\r
+            Gets the column name for the name of tag.\r
+            </summary>\r
+            <value>The column name for the name of tag.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Tag.Name"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.TagColumns.Count">\r
+            <summary>\r
+            Gets the column name for the number of media of tag.\r
+            </summary>\r
+            <value>The column name for the number of media of tag.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.AddMedia(System.Int32,System.String)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.TagCommand.RemoveMedia(System.Int32,System.String)"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.TagColumns.Id">\r
+            <summary>\r
+            Gets the column name for the ID of tag.\r
+            </summary>\r
+            <value>The column name for the ID of tag.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Tag.Id"/>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.BookmarkColumns">\r
+            <summary>\r
+            Provides the bookmark column names that can be used for Select and Count commands.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.BookmarkCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.BookmarkCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.CountBookmark(System.String,Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectBookmark(System.String,Tizen.Content.MediaContent.SelectArguments)"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.BookmarkColumns.Offset">\r
+            <summary>\r
+            Gets the column name for the offset of the bookmark.\r
+            </summary>\r
+            <value>The column name for the offset of the bookmark.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Bookmark.Offset"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.BookmarkColumns.Id">\r
+            <summary>\r
+            Gets the column name for the ID of the bookmark.\r
+            </summary>\r
+            <value>The column name for the ID of the bookmark.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Bookmark.Id"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.BookmarkColumns.Name">\r
+            <summary>\r
+            Gets the column name for the name of the bookmark.\r
+            </summary>\r
+            <value>The column name for the name of the bookmark.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Bookmark.Name"/>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.FaceInfoColumns">\r
+            <summary>\r
+            Provides the face info column names that can be used for Select and Count commands.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.FaceInfoCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.CountFaceInfo(System.String,Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectFaceInfo(System.String,Tizen.Content.MediaContent.SelectArguments)"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.FaceInfoColumns.Tag">\r
+            <summary>\r
+            Gets the column name for the tag of face information.\r
+            </summary>\r
+            <value>The column name for the tag of face information.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.FaceInfo.Tag"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.FaceInfoColumns.Id">\r
+            <summary>\r
+            Gets the column name for the ID of face information.\r
+            </summary>\r
+            <value>The column name for the ID of face information.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.FaceInfo.Id"/>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.StorageColumns">\r
+            <summary>\r
+            Provides the storage column names that can be used for Select and Count commands.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.SelectArguments"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.CountArguments"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.QueryArguments.FilterExpression"/>\r
+            <seealso cref="P:Tizen.Content.MediaContent.SelectArguments.SortOrder"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.StorageCommand.Count(Tizen.Content.MediaContent.CountArguments)"/>\r
+            <seealso cref="M:Tizen.Content.MediaContent.StorageCommand.Select(Tizen.Content.MediaContent.SelectArguments)"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.StorageColumns.Id">\r
+            <summary>\r
+            Gets the column name for the ID of storage.\r
+            </summary>\r
+            <value>The column name for the ID of storage.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Storage.Id"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.StorageColumns.Path">\r
+            <summary>\r
+            Gets the column name for the path of storage.\r
+            </summary>\r
+            <value>The column name for the path of storage.</value>\r
+            <remarks>\r
+            The value type is string.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Storage.Path"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.StorageColumns.Type">\r
+            <summary>\r
+            Gets the column name for the type of storage.\r
+            </summary>\r
+            <value>The column name for the type of storage.</value>\r
+            <remarks>\r
+            The value type is integer.\r
+            The value should be an integer that is one of the <see cref="T:Tizen.Content.MediaContent.StorageType"/> values.\r
+            </remarks>\r
+            <seealso cref="P:Tizen.Content.MediaContent.Storage.Type"/>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.Collation">\r
+            <summary>\r
+            Specifies how the strings are compared.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.Collation.Default">\r
+            <summary>\r
+            Default collation, binary.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.Collation.NoCase">\r
+            <summary>\r
+            Case-insensitive.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.Collation.Rtrim">\r
+            <summary>\r
+            Trailing space characters are ignored.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.Collation.Localized">\r
+            <summary>\r
+            Localized, NoCase also applied.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.StorageType">\r
+            <summary>\r
+            Specifies the storage types.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.StorageType.Internal">\r
+            <summary>\r
+            The device's internal storage.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.StorageType.External">\r
+            <summary>\r
+            The device's external storage like SD card.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.StorageType.ExternalUsb">\r
+            <summary>\r
+            The external USB storage.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.OperationType">\r
+            <summary>\r
+            Specifies database operation types.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.OperationType.Insert">\r
+            <summary>\r
+            Insert operation.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.OperationType.Delete">\r
+            <summary>\r
+            Delete operation.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.OperationType.Update">\r
+            <summary>\r
+            Update operation.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.MediaType">\r
+            <summary>\r
+            Specifies types of the <see cref="T:Tizen.Content.MediaContent.MediaInfo"/>.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaType.Image">\r
+            <summary>\r
+            The type of an image.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.ImageInfo"/>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaType.Video">\r
+            <summary>\r
+            The type of a video.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.VideoInfo"/>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaType.Sound">\r
+            <summary>\r
+            The type of sound.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.AudioInfo"/>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaType.Music">\r
+            <summary>\r
+            The type of music.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.AudioInfo"/>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaType.Other">\r
+            <summary>\r
+            The type of other.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.Orientation">\r
+            <summary>\r
+            Specifies orientation types of media.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.Orientation.Rotate0">\r
+            <summary>\r
+            None.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.Orientation.Normal">\r
+            <summary>\r
+            Normal.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.Orientation.Rotate90">\r
+            <summary>\r
+            Rotate 90 degrees.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.Orientation.Rotate180">\r
+            <summary>\r
+            Rotate 180 degrees.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.Orientation.Rotate270">\r
+            <summary>\r
+            Rotate 270 degrees.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.Orientation.FlipHorizontal">\r
+            <summary>\r
+            Flip horizontal.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.Orientation.FlipVertical">\r
+            <summary>\r
+            Flip vertical.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.Orientation.Transpose">\r
+            <summary>\r
+            Transpose.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.Orientation.Transverse">\r
+            <summary>\r
+            Transverse.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs">\r
+            <summary>\r
+            Provides data for the <see cref="E:Tizen.Content.MediaContent.MediaDatabase.MediaInfoUpdated"/> event.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs.ProcessId">\r
+            <summary>\r
+            Gets the process ID which triggers the event.\r
+            </summary>\r
+            <value>The process ID which triggers the event.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs.OperationType">\r
+            <summary>\r
+            Gets the operation type.\r
+            </summary>\r
+            <value>The operation type which triggers the event.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs.Id">\r
+            <summary>\r
+            Gets the ID of the media updated.\r
+            </summary>\r
+            <value>The ID of the media updated.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs.Path">\r
+            <summary>\r
+            Gets the path of the media updated.\r
+            </summary>\r
+            <value>The path of the media updated.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs.MediaType">\r
+            <summary>\r
+            Gets the type of the media updated.\r
+            </summary>\r
+            <value>The <see cref="P:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs.MediaType"/> of the media updated.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdatedEventArgs.MimeType">\r
+            <summary>\r
+            The MIME type of the media updated.\r
+            </summary>\r
+            <value>The MIME type of the media updated.</value>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.FolderUpdatedEventArgs">\r
+            <summary>\r
+            Provides data for the <see cref="E:Tizen.Content.MediaContent.MediaDatabase.FolderUpdated"/> event.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.FolderUpdatedEventArgs.OperationType">\r
+            <summary>\r
+            Gets the operation type.\r
+            </summary>\r
+            <value>The operation type which triggers the event.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.FolderUpdatedEventArgs.Id">\r
+            <summary>\r
+            Gets the ID of the folder updated.\r
+            </summary>\r
+            <value>The ID of the folder updated.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.FolderUpdatedEventArgs.Path">\r
+            <summary>\r
+            Gets the path of the folder updated.\r
+            </summary>\r
+            <value>The path of the folder updated.</value>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.FaceInfo">\r
+            <summary>\r
+            Represents the face information for the media.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.FaceInfo.Rect">\r
+            <summary>\r
+            Gets the region.\r
+            </summary>\r
+            <value>The region of face in the media.</value>\r
+            <remarks>\r
+            The coordinates of the rectangle are orientation-applied values.\r
+            </remarks>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.FaceInfo.Id">\r
+            <summary>\r
+            Gets the ID of face information.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.FaceInfo.MediaInfoId">\r
+            <summary>\r
+            Gets the media ID that the face information is added.\r
+            </summary>\r
+            <value>The media ID that the face information is added.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.FaceInfo.Tag">\r
+            <summary>\r
+            Gets the tag name.\r
+            </summary>\r
+            <value>The tag name of face information.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.FaceInfo.Orientation">\r
+            <summary>\r
+            Gets the orientation of face information.\r
+            </summary>\r
+            <value>The orientation of face information.</value>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FaceInfo.ToString">\r
+            <summary>\r
+            Returns a string representation of the face information.\r
+            </summary>\r
+            <returns>A string representation of the current face info.</returns>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.FaceInfoCommand">\r
+            <summary>\r
+            Provides commands to manage face information in the database.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.Album"/>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FaceInfoCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.FaceInfoCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.\r
+            </summary>\r
+            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>\r
+            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FaceInfoCommand.Delete(System.String)">\r
+            <summary>\r
+            Deletes the face information from the database.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="faceInfoId">The face information ID to delete.</param>\r
+            <returns>true if the matched record was found and deleted, otherwise false.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="faceInfoId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="faceInfoId"/> is a zero-length string, contains only white space.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FaceInfoCommand.Select">\r
+            <summary>\r
+            Retrieves the face information.\r
+            </summary>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FaceInfoCommand.Select(Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the face information with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="filter">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FaceInfoCommand.UpdateTag(System.String,System.String)">\r
+            <summary>\r
+            Updates a tag with the specified tag.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="faceInfoId">The face information ID to update.</param>\r
+            <param name="tag">The tag value for update.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <remarks>Only values set in the <see cref="T:Tizen.Content.MediaContent.PlaylistUpdateValues"/> are updated.</remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="faceInfoId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="faceInfoId"/> is a zero-length string, contains only white space.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.Folder">\r
+            <summary>\r
+            Represents the folder information for the media.\r
+            </summary>\r
+            <remarks>\r
+            The <see cref="T:Tizen.Content.MediaContent.Folder"/> is used to organize media content files, i.e., image, audio, and video files,\r
+            in the physical storage of the device.\r
+            </remarks>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Folder.Id">\r
+            <summary>\r
+            Gets the ID of the folder.\r
+            </summary>\r
+            <value>The unique ID of the folder.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Folder.Path">\r
+            <summary>\r
+            Gets the path of the folder.\r
+            </summary>\r
+            <value>The path of the folder.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Folder.Name">\r
+            <summary>\r
+            Gets the name of the folder.\r
+            </summary>\r
+            <value>The name of the folder.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Folder.StorageType">\r
+            <summary>\r
+            Gets the <see cref="P:Tizen.Content.MediaContent.Folder.StorageType"/> of the storage that the folder exists.\r
+            </summary>\r
+            <value>The <see cref="P:Tizen.Content.MediaContent.Folder.StorageType"/> of the storage that the folder exists.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Folder.StorageId">\r
+            <summary>\r
+            Gets the storage ID of the storage that the folder exists.\r
+            </summary>\r
+            <value>The storage ID of the storage that the folder exists.</value>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.Folder.ToString">\r
+            <summary>\r
+            Returns a string representation of the folder.\r
+            </summary>\r
+            <returns>A string representation of the current folder.</returns>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.FolderCommand">\r
+            <summary>\r
+            Provides commands to manage folders and query related media items in the database.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FolderCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.FolderCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.\r
+            </summary>\r
+            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>\r
+            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FolderCommand.Count">\r
+            <summary>\r
+            Retrieves the number of folders.\r
+            </summary>\r
+            <returns>The number of folders.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FolderCommand.Count(Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of folders with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.\r
+            </summary>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of folders.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FolderCommand.Select">\r
+            <summary>\r
+            Retrieves the folders.\r
+            </summary>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FolderCommand.Select(Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the folders with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FolderCommand.Select(System.String)">\r
+            <summary>\r
+            Retrieves the folder.\r
+            </summary>\r
+            <param name="folderId">The folder ID to query with.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.Folder"/> instance if the matched record was found in the database, otherwise null.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="folderId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="folderId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FolderCommand.CountMedia(System.String)">\r
+            <summary>\r
+            Retrieves the number of media information under the folder.\r
+            </summary>\r
+            <param name="folderId">The ID of the folder to count media in the folder.</param>\r
+            <returns>The number of media information.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="folderId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="folderId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FolderCommand.CountMedia(System.String,Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of media information under the folder with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.\r
+            </summary>\r
+            <param name="folderId">The ID of the folder to count media in the folder.</param>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of media information.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="folderId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="folderId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FolderCommand.SelectMedia(System.String)">\r
+            <summary>\r
+            Retrieves the media information under the folder.\r
+            </summary>\r
+            <param name="folderId">The ID of the folder to select media in the folder.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="folderId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="folderId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.FolderCommand.SelectMedia(System.String,Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the media information under the folder with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="folderId">The ID of the folder to select media in the folder.</param>\r
+            <param name="filter">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="folderId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="folderId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.ImageInfo">\r
+            <summary>\r
+            Represents the image media stored in the device.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.ImageInfo.Width">\r
+            <summary>\r
+            Gets the image width in pixels.\r
+            </summary>\r
+            <value>The image width in pixels.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.ImageInfo.Height">\r
+            <summary>\r
+            Gets the image height in pixels.\r
+            </summary>\r
+            <value>The image height in pixels.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.ImageInfo.Orientation">\r
+            <summary>\r
+            Gets the orientation of image.\r
+            </summary>\r
+            <value>The orientation of image.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.ImageInfo.DateTaken">\r
+            <summary>\r
+            Gets the date of the creation time as a formatted string.\r
+            </summary>\r
+            <value>The date of the creation time as a formatted string.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.ImageInfo.BurstId">\r
+            <summary>\r
+            Gets the burst shot ID.\r
+            </summary>\r
+            <value>The burst shot ID if it is a burst shot, otherwise an empty string.</value>\r
+            <seealso cref="P:Tizen.Content.MediaContent.ImageInfo.IsBurstShot"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.ImageInfo.ExposureTime">\r
+            <summary>\r
+            Gets the exposure time from EXIF.\r
+            </summary>\r
+            <value>The exposure time from EXIF.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.ImageInfo.FNumber">\r
+            <summary>\r
+            Gets the FNumber from EXIF.\r
+            </summary>\r
+            <value>The FNumber from exif.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.ImageInfo.Iso">\r
+            <summary>\r
+            Gets the ISO from EXIF.\r
+            </summary>\r
+            <value>The iso from EXIF.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.ImageInfo.Model">\r
+            <summary>\r
+            Gets the model from EXIF.\r
+            </summary>\r
+            <value>The model from EXIF.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.ImageInfo.IsBurstShot">\r
+            <summary>\r
+            Gets the value indicating whether the media is a burst shot image.\r
+            </summary>\r
+            <value>true if the media is a burst shot image, otherwise false.</value>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.MediaCommand">\r
+            <summary>\r
+            The <see cref="T:Tizen.Content.MediaContent.MediaCommand"/> is a base class for command classes.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.MediaCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.\r
+            </summary>\r
+            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>\r
+            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaCommand.Database">\r
+            <summary>\r
+            Gets the <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.\r
+            </summary>\r
+            <value>The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> which commands execute on.</value>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.IMediaDataReader">\r
+            <summary>\r
+            Provides a means of reading results obtained by executing a query.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.IMediaDataReader.Read">\r
+            <summary>\r
+            Advances to the next record.\r
+            </summary>\r
+            <returns>true if there are more rows; otherwise false.</returns>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.IMediaDataReader.Current">\r
+            <summary>\r
+            Gets the current record.\r
+            </summary>\r
+            <value>The current record object.</value>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.MediaDataReader`1">\r
+            <summary>\r
+            Provides a means of reading results obtained by executing a query.\r
+            </summary>\r
+            <typeparam name="TRecord"></typeparam>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaDataReader`1.Current">\r
+            <summary>\r
+            Gets the current record.\r
+            </summary>\r
+            <value>The current record if the position is valid; otherwise null.</value>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaDataReader`1.Read">\r
+            <summary>\r
+            Advances to the next record.\r
+            </summary>\r
+            <returns>true if there are more rows; otherwise false.</returns>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaDataReader`1.Dispose(System.Boolean)">\r
+            <summary>\r
+            Disposes of the resources (other than memory) used by the MediaDataReader.\r
+            </summary>\r
+            <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaDataReader`1.Dispose">\r
+            <summary>\r
+            Releases all resources used by the current instance.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.MediaDatabase">\r
+            <summary>\r
+            Provides the ability to connect to and manage the database.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaDatabase.#ctor">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> class.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaDatabase.Connect">\r
+            <summary>\r
+            Connects to the database.\r
+            </summary>\r
+            <exception cref="T:System.InvalidOperationException">The database is already connected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while connecting.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaDatabase.Disconnect">\r
+            <summary>\r
+            Disconnects from the media database.\r
+            </summary>\r
+            <exception cref="T:System.InvalidOperationException">The database is not connected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while connecting.</exception>\r
+        </member>\r
+        <member name="E:Tizen.Content.MediaContent.MediaDatabase.MediaInfoUpdated">\r
+            <summary>\r
+            Occurs when there is a change for media in the database.\r
+            </summary>\r
+        </member>\r
+        <member name="E:Tizen.Content.MediaContent.MediaDatabase.FolderUpdated">\r
+            <summary>\r
+            Occurs when there is a change for the folder in the database.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaDatabase.ScanFile(System.String)">\r
+            <summary>\r
+            Requests to scan a media file.\r
+            </summary>\r
+            <param name="path">The path of the media to be scanned.</param>\r
+            <remarks>\r
+            It requests to scan a media file to the media server.\n\r
+            If the specified file is not registered to the database yet,\r
+            the media file information will be added to the database.\n\r
+            If it is already registered to the database, the media information is refreshed.\n\r
+            If the specified file does not exist,\r
+            the record of the media file will be deleted from the database.\n\r
+            \n\r
+            If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n\r
+            If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.\r
+            </remarks>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <privilege>http://tizen.org/privilege/mediastorage</privilege>\r
+            <privilege>http://tizen.org/privilege/externalstorage</privilege>\r
+            <exception cref="T:System.InvalidOperationException">The database is not connected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="path"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="path"/> is a zero-length string, contains only white space.\n\r
+                -or-\n\r
+                <paramref name="path"/> contains a hidden path that starts with '.'.\n\r
+                -or-\n\r
+                <paramref name="path"/> contains a directory containing the ".scan_ignore" file.\r
+            </exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaDatabase.ScanFolderAsync(System.String)">\r
+            <summary>\r
+            Requests to scan a folder recursively.\r
+            </summary>\r
+            <remarks>\r
+                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n\r
+                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.\r
+            </remarks>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <privilege>http://tizen.org/privilege/mediastorage</privilege>\r
+            <privilege>http://tizen.org/privilege/externalstorage</privilege>\r
+            <param name="folderPath">The path to scan.</param>\r
+            <remarks>Folders that contains a file named ".scan_ignore" will not be scanned.</remarks>\r
+            <returns>A task that represents the asynchronous scan operation.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The database is not connected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="folderPath"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="folderPath"/> is a zero-length string, contains only white space.\n\r
+                -or-\n\r
+                <paramref name="folderPath"/> contains a hidden path that starts with '.'.\n\r
+                -or-\n\r
+                <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.\r
+            </exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaDatabase.ScanFolderAsync(System.String,System.Boolean)">\r
+            <summary>\r
+            Requests to scan a folder.\r
+            </summary>\r
+            <remarks>\r
+                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n\r
+                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.\r
+            </remarks>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <privilege>http://tizen.org/privilege/mediastorage</privilege>\r
+            <privilege>http://tizen.org/privilege/externalstorage</privilege>\r
+            <param name="folderPath">The path to scan.</param>\r
+            <param name="recursive">The value indicating if the folder is to be recursively scanned.</param>\r
+            <remarks>Folders that contains a file named ".scan_ignore" will not be scanned.</remarks>\r
+            <returns>A task that represents the asynchronous scan operation.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The database is not connected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="folderPath"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="folderPath"/> is a zero-length string, contains only white space.\n\r
+                -or-\n\r
+                <paramref name="folderPath"/> contains a hidden path that starts with '.'.\n\r
+                -or-\n\r
+                <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.\r
+            </exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaDatabase.ScanFolderAsync(System.String,System.Threading.CancellationToken)">\r
+            <summary>\r
+            Requests to scan a folder recursively.\r
+            </summary>\r
+            <remarks>\r
+                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n\r
+                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.\r
+            </remarks>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <privilege>http://tizen.org/privilege/mediastorage</privilege>\r
+            <privilege>http://tizen.org/privilege/externalstorage</privilege>\r
+            <param name="folderPath">The path to scan.</param>\r
+            <param name="cancellationToken">The token to stop scanning.</param>\r
+            <remarks>Folders that contains a file named ".scan_ignore" will not be scanned.</remarks>\r
+            <returns>A task that represents the asynchronous scan operation.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The database is not connected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="folderPath"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="folderPath"/> is a zero-length string, contains only white space.\n\r
+                -or-\n\r
+                <paramref name="folderPath"/> contains a hidden path that starts with '.'.\n\r
+                -or-\n\r
+                <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.\r
+            </exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaDatabase.ScanFolderAsync(System.String,System.Boolean,System.Threading.CancellationToken)">\r
+            <summary>\r
+            Requests to scan a folder recursively.\r
+            </summary>\r
+            <remarks>\r
+                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n\r
+                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.\r
+            </remarks>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <privilege>http://tizen.org/privilege/mediastorage</privilege>\r
+            <privilege>http://tizen.org/privilege/externalstorage</privilege>\r
+            <param name="folderPath">The path to scan.</param>\r
+            <param name="recursive">The value indicating if the folder is to be recursively scanned.</param>\r
+            <param name="cancellationToken">The token to stop scanning.</param>\r
+            <remarks>Folders that contains a file named ".scan_ignore" will not be scanned.</remarks>\r
+            <returns>A task that represents the asynchronous scan operation.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The database is not connected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="folderPath"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="folderPath"/> is a zero-length string, contains only white space.\n\r
+                -or-\n\r
+                <paramref name="folderPath"/> contains a hidden path that starts with '.'.\n\r
+                -or-\n\r
+                <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.\r
+            </exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaDatabase.Dispose(System.Boolean)">\r
+            <summary>\r
+            Disposes of the resources (other than memory) used by the MediaDatabase.\r
+            </summary>\r
+            <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaDatabase.Dispose">\r
+            <summary>\r
+            Releases all the resources.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaDatabase.IsDisposed">\r
+            <summary>\r
+            Gets the value indicating whether the database has been disposed of.\r
+            </summary>\r
+            <value>true if the database has been disposed of; otherwise, false.</value>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.MediaDatabaseError">\r
+            <summary>\r
+            Specifies the database errors.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaDatabaseError.OperationFailed">\r
+            <summary>\r
+            Operation failed.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaDatabaseError.DatabaseBusy">\r
+            <summary>\r
+            Operation failed because the database is busy.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.MediaDatabaseException">\r
+            <summary>\r
+            The exception that is thrown when a database operation failed.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaDatabaseException.Error">\r
+            <summary>\r
+            Gets the error that causes the exception.\r
+            </summary>\r
+            <value>The <see cref="T:Tizen.Content.MediaContent.MediaDatabaseError"/> that causes the exception.</value>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.MediaInfo">\r
+            <summary>\r
+            Represents the information related to the media stored.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.MediaInfoCommand"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.MediaInfoUpdateValues"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.Id">\r
+            <summary>\r
+            Gets the ID of media.\r
+            </summary>\r
+            <value>The unique ID of media.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.Path">\r
+            <summary>\r
+            Gets the path to media.\r
+            </summary>\r
+            <value>The full path of the media file.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.DisplayName">\r
+            <summary>\r
+            Gets the name of media.\r
+            </summary>\r
+            <value>The base name of the media file.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.MediaType">\r
+            <summary>\r
+            Gets the <see cref="P:Tizen.Content.MediaContent.MediaInfo.MediaType"/> of media.\r
+            </summary>\r
+            <value>The <see cref="P:Tizen.Content.MediaContent.MediaInfo.MediaType"/> of media.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.MimeType">\r
+            <summary>\r
+            Gets the mime type from media.\r
+            </summary>\r
+            <value>The mime type of media.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.FileSize">\r
+            <summary>\r
+            Gets the file size of media in bytes.\r
+            </summary>\r
+            <value>The file size of media in bytes.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.DateAdded">\r
+            <summary>\r
+            Gets the date of addition of media.\r
+            </summary>\r
+            <value>The date of addition of media.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.DateModified">\r
+            <summary>\r
+            Gets the date of modification of media.\r
+            </summary>\r
+            <value>The date of modification of media.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.Timeline">\r
+            <summary>\r
+            Gets the timeline of media.\r
+            </summary>\r
+            <value>\r
+            The creation date if the file has the creation information (like recorded date or image creation date),\r
+            otherwise the modified date.\r
+            </value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.ThumbnailPath">\r
+            <summary>\r
+            Gets the thumbnail of media.\r
+            </summary>\r
+            <value>The thumbnail path of media.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.Description">\r
+            <summary>\r
+            Gets the description of media.\r
+            </summary>\r
+            <value>The description from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.Longitude">\r
+            <summary>\r
+            Gets the longitude of media.\r
+            </summary>\r
+            <value>The longitude.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.Latitude">\r
+            <summary>\r
+            Gets the latitude of media.\r
+            </summary>\r
+            <value>The latitude.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.Altitude">\r
+            <summary>\r
+            Gets the altitude of media.\r
+            </summary>\r
+            <value>The altitude.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.Weather">\r
+            <summary>\r
+            Gets the weather information of media.\r
+            </summary>\r
+            <value>The weather information which a user sets.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.Rating">\r
+            <summary>\r
+            Gets the rating of media.\r
+            </summary>\r
+            <value>The rating from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.IsFavorite">\r
+            <summary>\r
+            Gets the favorite status of media.\r
+            </summary>\r
+            <value>true if media is set as favorite, otherwise false.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.Provider">\r
+            <summary>\r
+            Gets the provider of media.\r
+            </summary>\r
+            <value>The provider which a user sets.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.Title">\r
+            <summary>\r
+            Gets the title of media.\r
+            </summary>\r
+            <value>The title of media.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.Category">\r
+            <summary>\r
+            Gets the category of media.\r
+            </summary>\r
+            <value>The category which a user sets.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.LocationTag">\r
+            <summary>\r
+            Gets the location tag of media.\r
+            </summary>\r
+            <value>The location tag which a user sets.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.AgeRating">\r
+            <summary>\r
+            Gets the age rating of media.\r
+            </summary>\r
+            <value>The age rating which a user sets.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.StorageId">\r
+            <summary>\r
+            Gets the storage ID of the storage that the media is stored on.\r
+            </summary>\r
+            <value>The storage ID of the storage that the media is stored on.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.IsDrm">\r
+            <summary>\r
+            Gets the value indicating whether the media is DRM-protected.\r
+            </summary>\r
+            <value>A bool value indicating whether the media is DRM-protected.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfo.StorageType">\r
+            <summary>\r
+            Gets the storage type of the storage that the media is stored on.\r
+            </summary>\r
+            <value>The storage type of the storage that the media is stored on.</value>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfo.ToString">\r
+            <summary>\r
+            Returns a string representation of the media information.\r
+            </summary>\r
+            <returns>A string representation of the current media information.</returns>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.MediaInfoColumnKey">\r
+            <summary>\r
+            Specifies the group keys for <see cref="T:Tizen.Content.MediaContent.MediaInfo"/>.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.DisplayName">\r
+            <summary>\r
+            Display name.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Type">\r
+            <summary>\r
+            Media type.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.MimeType">\r
+            <summary>\r
+            Mime type.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Size">\r
+            <summary>\r
+            File size.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.DateAdded">\r
+            <summary>\r
+            Date added.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.DateModified">\r
+            <summary>\r
+            Date modified.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Title">\r
+            <summary>\r
+            Content title.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Artist">\r
+            <summary>\r
+            Artist.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.AlbumArtist">\r
+            <summary>\r
+            Album artist.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Genre">\r
+            <summary>\r
+            Genre.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Composer">\r
+            <summary>\r
+            Composer.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Year">\r
+            <summary>\r
+            Year.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.DateRecorded">\r
+            <summary>\r
+            Date recorded.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Copyright">\r
+            <summary>\r
+            Copyright.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.TrackNumber">\r
+            <summary>\r
+            Track number.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Description">\r
+            <summary>\r
+            Description.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Longitude">\r
+            <summary>\r
+            Longitude.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Latitude">\r
+            <summary>\r
+            Latitude.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Altitude">\r
+            <summary>\r
+            Altitude.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.BurstImage">\r
+            <summary>\r
+            Burst shot.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Rating">\r
+            <summary>\r
+            Rating.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Provider">\r
+            <summary>\r
+            Provider.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Category">\r
+            <summary>\r
+            Category.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.LocationTag">\r
+            <summary>\r
+            Location tag.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.AgeRating">\r
+            <summary>\r
+            Age rating.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Content.MediaContent.MediaInfoColumnKey.Weather">\r
+            <summary>\r
+            Weather.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.MediaInfoCommand">\r
+            <summary>\r
+            Provides commands to manage the media information and query related items in the database.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.FolderCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.\r
+            </summary>\r
+            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>\r
+            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountBookmark(System.String)">\r
+            <summary>\r
+            Retrieves the number of the bookmarks added to the media.\r
+            </summary>\r
+            <param name="mediaId">The media ID to count the bookmarks added to the media.</param>\r
+            <returns>The number of the bookmarks.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountBookmark(System.String,Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of the bookmarks added to the media with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.\r
+            </summary>\r
+            <param name="mediaId">The media ID to count the bookmarks added to the media.</param>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of the bookmarks.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectBookmark(System.String)">\r
+            <summary>\r
+            Retrieves the bookmarks added to the media.\r
+            </summary>\r
+            <param name="mediaId">The media ID to select the bookmarks added to the media.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectBookmark(System.String,Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the bookmarks added to the media with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="mediaId">The media ID to select the bookmarks added to the media.</param>\r
+            <param name="filter">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountFaceInfo(System.String)">\r
+            <summary>\r
+            Retrieves the number of the face information added to or detected from the media.\r
+            </summary>\r
+            <param name="mediaId">The media ID to count face information added to the media.</param>\r
+            <returns>The number of the face information.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountFaceInfo(System.String,Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of the face information added to or detected from the media with filter.\r
+            </summary>\r
+            <param name="mediaId">The media ID to count the face information added to the media.</param>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of the face information.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectFaceInfo(System.String)">\r
+            <summary>\r
+            Retrieves the face information added to or detected from the media.\r
+            </summary>\r
+            <param name="mediaId">The media ID to select face information added to the media.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectFaceInfo(System.String,Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the face information added to or detected from the media with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="mediaId">The media ID to select the face information added to the media.</param>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountTag(System.String)">\r
+            <summary>\r
+            Retrieves the number of tags that the media has.\r
+            </summary>\r
+            <returns>The number of tags.</returns>\r
+            <param name="mediaId">The media ID to count tags added to the media.</param>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountTag(System.String,Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of tags that the media has with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.\r
+            </summary>\r
+            <param name="mediaId">The media ID to count tags added to the media.</param>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of tags.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectTag(System.String)">\r
+            <summary>\r
+            Retrieves the tags that the media has.\r
+            </summary>\r
+            <param name="mediaId">The media ID to select tags added to the media.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectTag(System.String,Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the tags that the media has with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="mediaId">The media ID to select tags added to the media.</param>\r
+            <param name="filter">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountMedia">\r
+            <summary>\r
+            Retrieves the number of the media information.\r
+            </summary>\r
+            <returns>The number of the media information.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountMedia(Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of the media information with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of media information.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectMedia(System.String)">\r
+            <summary>\r
+            Retrieves the media.\r
+            </summary>\r
+            <param name="mediaId">The media ID to retrieve.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaInfo"/> instance if the matched record was found in the database, otherwise null.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountGroupBy(Tizen.Content.MediaContent.MediaInfoColumnKey)">\r
+            <summary>\r
+            Retrieves the number of values grouped by the specified column with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="columnKey">The column key.</param>\r
+            <returns>The number of groups.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="columnKey"/> is invalid.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CountGroupBy(Tizen.Content.MediaContent.MediaInfoColumnKey,Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of values grouped by the specified column with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="columnKey">The column key.</param>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of groups.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="columnKey"/> is invalid.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectGroupBy(Tizen.Content.MediaContent.MediaInfoColumnKey)">\r
+            <summary>\r
+            Retrieves the group values of the specified column.\r
+            </summary>\r
+            <param name="columnKey">The column key.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="columnKey"/> is invalid.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectGroupBy(Tizen.Content.MediaContent.MediaInfoColumnKey,Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the group values of the specified column with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="columnKey">The column key.</param>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="columnKey"/> is invalid.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectMedia">\r
+            <summary>\r
+            Retrieves all the media.\r
+            </summary>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.SelectMedia(Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the media with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.Delete(System.String)">\r
+            <summary>\r
+            Deletes the media from the database.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="mediaId">The media ID to delete.</param>\r
+            <returns>true if the matched record was found and deleted, otherwise false.</returns>\r
+            <remarks>The <see cref="M:Tizen.Content.MediaContent.MediaDatabase.ScanFile(System.String)"/> or the <see cref="M:Tizen.Content.MediaContent.MediaDatabase.ScanFolderAsync(System.String)"/> can be used instead.</remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.Add(System.String)">\r
+            <summary>\r
+            Adds the media to the database.\r
+            </summary>\r
+            <param name="path">The file path to add.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaInfo"/> instance that contains the record information in the database.</returns>\r
+            <remarks>\r
+                If the media already exists in the database, it returns the existing information.\n\r
+                \n\r
+                The <see cref="M:Tizen.Content.MediaContent.MediaDatabase.ScanFile(System.String)"/> or the <see cref="M:Tizen.Content.MediaContent.MediaDatabase.ScanFolderAsync(System.String)"/> can be used instead.\n\r
+                \n\r
+                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n\r
+                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.\r
+            </remarks>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <privilege>http://tizen.org/privilege/mediastorage</privilege>\r
+            <privilege>http://tizen.org/privilege/externalstorage</privilege>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="path"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="path"/> is a zero-length string, contains only white space.\n\r
+                -or-\n\r
+                <paramref name="path"/> contains a hidden path that starts with '.'.\n\r
+                -or-\n\r
+                <paramref name="path"/> contains a directory containing the ".scan_ignore" file.\r
+            </exception>\r
+            <exception cref="T:System.IO.FileNotFoundException"><paramref name="path"/> does not exists.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.AddAsync(System.Collections.Generic.IEnumerable{System.String})">\r
+            <summary>\r
+            Adds media files into the media database.\r
+            </summary>\r
+            <remarks>\r
+                The paths that already exist in the database will be ignored.\n\r
+                At most 300 items can be added at once.\n\r
+                \n\r
+                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n\r
+                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.\r
+            </remarks>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <privilege>http://tizen.org/privilege/mediastorage</privilege>\r
+            <privilege>http://tizen.org/privilege/externalstorage</privilege>\r
+            <param name="paths">The paths of the media files to add.</param>\r
+            <returns>A task that represents the asynchronous add operation.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="paths"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="paths"/> contains null.\n\r
+                -or-\n\r
+                <paramref name="paths"/> contains the invalid path.\n\r
+                -or-\n\r
+                The number of <paramref name="paths"/> is 300 or more items.\r
+            </exception>\r
+            <exception cref="T:System.IO.FileNotFoundException"><paramref name="paths"/> contains a path that does not exist.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.AddBurstShotImagesAsync(System.Collections.Generic.IEnumerable{System.String})">\r
+            <summary>\r
+            Adds burst shot images into the media database.\r
+            </summary>\r
+            <param name="paths">The paths of the burst shot images to add.</param>\r
+            <returns>A task that represents the asynchronous add operation.</returns>\r
+            <remarks>\r
+                The paths that already exist in the database.\n\r
+                At most 300 items can be added at once.\r
+                \n\r
+                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n\r
+                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.\r
+            </remarks>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <privilege>http://tizen.org/privilege/mediastorage</privilege>\r
+            <privilege>http://tizen.org/privilege/externalstorage</privilege>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="paths"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="paths"/> contains null.\n\r
+                -or-\n\r
+                <paramref name="paths"/> contains the invalid path.\n\r
+                -or-\n\r
+                The number of <paramref name="paths"/> is 300 or more items.\r
+            </exception>\r
+            <exception cref="T:System.IO.FileNotFoundException"><paramref name="paths"/> contains a path that does not exist.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.Update(System.String,Tizen.Content.MediaContent.MediaInfoUpdateValues)">\r
+            <summary>\r
+            Updates the media with the specified values.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="mediaId">The media ID to update.</param>\r
+            <param name="values">The values for update.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <remarks>Only values set in the <see cref="T:Tizen.Content.MediaContent.MediaInfoUpdateValues"/> are updated.</remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException">\r
+                <paramref name="mediaId"/> is null.\n\r
+                -or-\n\r
+                <paramref name="values"/> is null.\r
+            </exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.Move(System.String,System.String)">\r
+            <summary>\r
+            Updates the path of the media to the specified destination path in the database.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <privilege>http://tizen.org/privilege/mediastorage</privilege>\r
+            <privilege>http://tizen.org/privilege/externalstorage</privilege>\r
+            <param name="mediaId">The media ID to move.</param>\r
+            <param name="newPath">The path that the media has been moved to.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <remarks>\r
+                Usually, it is used after the media file is moved to the another path.\n\r
+                \n\r
+                If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n\r
+                If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage.\r
+            </remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException">\r
+                <paramref name="mediaId"/> is null.\n\r
+                -or-\n\r
+                <paramref name="newPath"/> is null.\r
+            </exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="mediaId"/> is a zero-length string, contains only white space.\n\r
+                -or-\n\r
+                <paramref name="newPath"/> is a zero-length string, contains only white space.\n\r
+                -or-\n\r
+                <paramref name="newPath"/> contains a hidden directory that starts with '.'.\n\r
+                -or-\n\r
+                <paramref name="newPath"/> contains a directory containing the ".scan_ignore" file.\r
+            </exception>\r
+            <exception cref="T:System.IO.FileNotFoundException"><paramref name="newPath"/> does not exists.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CreateThumbnailAsync(System.String)">\r
+            <summary>\r
+            Creates the thumbnail image for the given media.\r
+            If the thumbnail already exists for the given media, the existing path will be returned.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="mediaId">The media ID to create the thumbnail.</param>\r
+            <returns>A task that represents the asynchronous operation. The task result contains the thumbnail path.</returns>\r
+            <exception cref="T:System.InvalidOperationException">\r
+                The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.\n\r
+                -or-\n\r
+                An internal error occurred while executing.\r
+            </exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.RecordNotFoundException"><paramref name="mediaId"/> does not exist in the database.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="mediaId"/> is a zero-length string, contains only white space.\r
+            </exception>\r
+            <exception cref="T:System.IO.FileNotFoundException">The file of the media does not exists; moved or deleted.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.UnsupportedContentException">\r
+                The thumbnail is not available for the given media.\n\r
+                -or-\n\r
+                The media is in the external USB storage (<see cref="P:Tizen.Content.MediaContent.MediaInfo.StorageType"/> is <see cref="F:Tizen.Content.MediaContent.StorageType.ExternalUsb"/>).\r
+            </exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.CreateThumbnailAsync(System.String,System.Threading.CancellationToken)">\r
+            <summary>\r
+            Creates the thumbnail image for the given media.\r
+            If the thumbnail already exists for the given media, the existing path will be returned.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="mediaId">The media ID to create the thumbnail.</param>\r
+            <param name="cancellationToken">The token to cancel the operation.</param>\r
+            <returns>A task that represents the asynchronous operation. The task result contains the thumbnail path.</returns>\r
+            <exception cref="T:System.InvalidOperationException">\r
+                The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.\n\r
+                -or-\n\r
+                An internal error occurred while executing.\r
+            </exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.RecordNotFoundException"><paramref name="mediaId"/> does not exist in the database.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="mediaId"/> is a zero-length string, contains only white space.\r
+            </exception>\r
+            <exception cref="T:System.IO.FileNotFoundException">The file of the media does not exists; moved or deleted.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.UnsupportedContentException">\r
+                The thumbnail is not available for the given media.\n\r
+                -or-\n\r
+                The media is in the external USB storage (<see cref="P:Tizen.Content.MediaContent.MediaInfo.StorageType"/> is <see cref="F:Tizen.Content.MediaContent.StorageType.ExternalUsb"/>).\r
+            </exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.DetectFaceAsync(System.String)">\r
+            <summary>\r
+            Detects faces from the given media.\r
+            If the thumbnail already exists for the given media, the existing path will be returned.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <feature>http://tizen.org/feature/vision.face_recognition</feature>\r
+            <param name="mediaId">The media ID to create the thumbnail.</param>\r
+            <returns>A task that represents the asynchronous add operation. The task result contains the number of faces detected.</returns>\r
+            <exception cref="T:System.InvalidOperationException">\r
+                The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.\n\r
+                -or-\n\r
+                An internal error occurred while executing.\r
+            </exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.RecordNotFoundException"><paramref name="mediaId"/> does not exist in the database.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="mediaId"/> is a zero-length string, contains only white space.\r
+            </exception>\r
+            <exception cref="T:System.IO.FileNotFoundException">The file of the media does not exists; moved or deleted.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.UnsupportedContentException">Face detection is not available for the given media.</exception>\r
+            <exception cref="T:System.NotSupportedException">The required feature is not supported.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.MediaInfoCommand.DetectFaceAsync(System.String,System.Threading.CancellationToken)">\r
+            <summary>\r
+            Creates the thumbnail image for the given media.\r
+            If the thumbnail already exists for the given media, the existing path will be returned.\r
+            </summary>\r
+            <remarks>\r
+                Media in the external storage is not supported, with the exception of MMC.\r
+            </remarks>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <feature>http://tizen.org/feature/vision.face_recognition</feature>\r
+            <param name="mediaId">The media ID to create the thumbnail.</param>\r
+            <param name="cancellationToken">The token to cancel the operation.</param>\r
+            <returns>A task that represents the asynchronous operation. The task result contains the number of faces detected.</returns>\r
+            <exception cref="T:System.InvalidOperationException">\r
+                The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.\n\r
+                -or-\n\r
+                An internal error occurred while executing.\r
+            </exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.RecordNotFoundException"><paramref name="mediaId"/> does not exist in the database.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="mediaId"/> is a zero-length string, contains only white space.\r
+            </exception>\r
+            <exception cref="T:System.IO.FileNotFoundException">The file of the media does not exists; moved or deleted.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.UnsupportedContentException">\r
+                Face detection is not available for the given media.\n\r
+                -or-\n\r
+                The media is in the external USB storage (<see cref="P:Tizen.Content.MediaContent.MediaInfo.StorageType"/> is <see cref="F:Tizen.Content.MediaContent.StorageType.ExternalUsb"/>).\r
+            </exception>\r
+            <exception cref="T:System.NotSupportedException">The required feature is not supported.</exception>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.MediaInfoUpdateValues">\r
+            <summary>\r
+            Provides means to set values used for the update command.\r
+            </summary>\r
+            <remarks>\r
+            The values only set in the object will be affected to the update command.\r
+            </remarks>\r
+            <seealso cref="M:Tizen.Content.MediaContent.MediaInfoCommand.Update(System.String,Tizen.Content.MediaContent.MediaInfoUpdateValues)"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdateValues.Weather">\r
+            <summary>\r
+            Gets or sets the weather information for an update.\r
+            </summary>\r
+            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>\r
+            <value>A string for weather; the field will not be updated if null.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdateValues.IsFavorite">\r
+            <summary>\r
+            Gets or sets the favorite status for an update.\r
+            </summary>\r
+            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>\r
+            <value>A value indicating whether the media is favorite; the field will not be updated if null.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdateValues.Provider">\r
+            <summary>\r
+            Gets or sets the provider information for an update.\r
+            </summary>\r
+            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>\r
+            <value>A string for provider; the field will not be updated if null.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdateValues.Category">\r
+            <summary>\r
+            Gets or sets the category information for an update.\r
+            </summary>\r
+            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>\r
+            <value>A string for category; the field will not be updated if null.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdateValues.LocationTag">\r
+            <summary>\r
+            Gets or sets the location tag for an update.\r
+            </summary>\r
+            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>\r
+            <value>A string for location tag; the field will not be updated if null.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.MediaInfoUpdateValues.AgeRating">\r
+            <summary>\r
+            Gets or sets the age rating information for an update.\r
+            </summary>\r
+            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>\r
+            <value>A string for age rating; the field will not be updated if null.</value>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.Playlist">\r
+            <summary>\r
+            Represents the playlist that is a group of media (usually songs).\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Playlist.Id">\r
+            <summary>\r
+            Gets the ID of the playlist.\r
+            </summary>\r
+            <value>The unique ID of the playlist.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Playlist.Name">\r
+            <summary>\r
+            Gets the name of the playlist.\r
+            </summary>\r
+            <value>The name of the playlist.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Playlist.ThumbnailPath">\r
+            <summary>\r
+            Gets the path to the thumbnail.\r
+            </summary>\r
+            <value>The path to the thumbnail.</value>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.Playlist.ToString">\r
+            <summary>\r
+            Returns a string representation of the playlist.\r
+            </summary>\r
+            <returns>A string representation of the current playlist.</returns>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.PlaylistUpdateValues">\r
+            <summary>\r
+            Provides means to set values used for the update command.\r
+            </summary>\r
+            <remarks>\r
+            The values only set in the object will be affected to the update command.\r
+            </remarks>\r
+            <seealso cref="M:Tizen.Content.MediaContent.PlaylistCommand.Update(System.Int32,Tizen.Content.MediaContent.PlaylistUpdateValues)"/>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.PlaylistUpdateValues.Name">\r
+            <summary>\r
+            Gets or sets the name of the playlist for an update.\r
+            </summary>\r
+            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>\r
+            <value>A string for name; the field will not be updated if null.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.PlaylistUpdateValues.ThumbnailPath">\r
+            <summary>\r
+            Gets or sets the thumbnail path of the playlist for an update.\r
+            </summary>\r
+            <remarks>If the value is null, the update operation will have no effect on the field.</remarks>\r
+            <value>A string for the thumbnail path; the field will not be updated if null.</value>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.PlayOrder">\r
+            <summary>\r
+            Represents an order of a member of the playlist.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlayOrder.#ctor(System.Int32,System.Int32)">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.Playlist"/> class with the specified member ID and the order value.\r
+            </summary>\r
+            <param name="memberId">The ID of the member.</param>\r
+            <param name="orderValue">The order value.</param>\r
+            <exception cref="T:System.ArgumentOutOfRangeException">\r
+                <paramref name="memberId"/> is less than or equal to zero.\n\r
+                -or-\n\r
+                <paramref name="orderValue"/> is less than zero.\r
+            </exception>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.PlayOrder.MemberId">\r
+            <summary>\r
+            Gets or sets the member ID.\r
+            </summary>\r
+            <value>The member ID.</value>\r
+            <exception cref="T:System.ArgumentOutOfRangeException">\r
+            <paramref name="value"/> is less than or equal to zero.\r
+            </exception>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.PlayOrder.Value">\r
+            <summary>\r
+            Gets or sets the value indicating the order of the member in the playlist.\r
+            </summary>\r
+            <value>An integer value indicating the order of the member in the playlist.</value>\r
+            <exception cref="T:System.ArgumentOutOfRangeException">\r
+                <paramref name="value"/> is less than zero.\r
+            </exception>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.PlaylistCommand">\r
+            <summary>\r
+            Provides the commands to manage playlists in the database.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.Playlist"/>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.PlaylistCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.\r
+            </summary>\r
+            <param name="database">A <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>\r
+            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Count">\r
+            <summary>\r
+            Retrieves the number of playlists.\r
+            </summary>\r
+            <returns>The number of playlists.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Count(Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of playlists with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.\r
+            </summary>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of playlists.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.GetPlayOrder(System.Int32,System.Int32)">\r
+            <summary>\r
+            Retrieves the play order of the member.\r
+            </summary>\r
+            <param name="playlistId">The playlist ID.</param>\r
+            <param name="memberId">The member ID of the playlist.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException">\r
+                <paramref name="playlistId"/> is less than or equal to zero.\n\r
+                -or-\n\r
+                <paramref name="memberId"/> is less than or equal to zero.\r
+            </exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Delete(System.Int32)">\r
+            <summary>\r
+            Deletes a playlist from the database.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="playlistId">The playlist ID to delete.</param>\r
+            <returns>true if the matched record was found and deleted, otherwise false.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.InsertFromFile(System.String,System.String)">\r
+            <summary>\r
+            Inserts the playlist into the database from the specified M3U file.\r
+            </summary>\r
+            <remarks>\r
+                If you want to access an internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n\r
+                If you want to access an external storage, you should add privilege http://tizen.org/privilege/externalstorage.\r
+            </remarks>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <privilege>http://tizen.org/privilege/mediastorage</privilege>\r
+            <privilege>http://tizen.org/privilege/externalstorage</privilege>\r
+            <param name="name">The name of the playlist.</param>\r
+            <param name="path">The path to a M3U file to import.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.Playlist"/> instance that contains the record information inserted.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException">\r
+                <paramref name="name"/> is null.\n\r
+                -or-\n\r
+                <paramref name="path"/> is null.\r
+            </exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="name"/> is a zero-length string.\n\r
+                -or-\n\r
+                <paramref name="path"/> is a zero-length string, contains only white space.\r
+            </exception>\r
+            <exception cref="T:System.IO.FileNotFoundException"><paramref name="path"/> does not exists.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.ExportToFile(System.Int32,System.String)">\r
+            <summary>\r
+            Exports the playlist to a M3U file.\r
+            </summary>\r
+            <remarks>\r
+                If the file already exists in the file system, then it will be overwritten.\n\r
+                \n\r
+                If you want to access an internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n\r
+                If you want to access an external storage, you should add privilege http://tizen.org/privilege/externalstorage.\r
+            </remarks>\r
+            <privilege>http://tizen.org/privilege/mediastorage</privilege>\r
+            <privilege>http://tizen.org/privilege/externalstorage</privilege>\r
+            <param name="playlistId">The playlist ID to export.</param>\r
+            <param name="path">The path to a M3U file.</param>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="path"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="path"/> is a zero-length string, contains only white space.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.RecordNotFoundException">No matching playlist exists.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Insert(System.String)">\r
+            <summary>\r
+            Inserts the playlist into the database with the specified name.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="name">The name of the playlist.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.Playlist"/> instance that contains the record information inserted.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="name"/> is a zero-length string.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Insert(System.String,System.String)">\r
+            <summary>\r
+            Inserts the playlist into the database with the specified name and the thumbnail path.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="name">The name of the playlist.</param>\r
+            <param name="thumbnailPath">The path of the thumbnail for the playlist. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.Playlist"/> instance that contains the record information inserted.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="name"/> is a zero-length string.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Select">\r
+            <summary>\r
+            Retrieves the playlists.\r
+            </summary>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Select(Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the playlists with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="filter">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Select(System.Int32)">\r
+            <summary>\r
+            Retrieves the playlist with the specified playlist ID.\r
+            </summary>\r
+            <param name="playlistId">The playlist ID to select.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.Playlist"/> instance if the matched record was found in the database, otherwise null.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.CountMember(System.Int32)">\r
+            <summary>\r
+            Retrieves the number of media information of the playlist.\r
+            </summary>\r
+            <param name="playlistId">The playlist ID to count media added to the playlist.</param>\r
+            <returns>The number of media information.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.CountMember(System.Int32,Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of media information of the playlist with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.\r
+            </summary>\r
+            <param name="playlistId">The playlist ID to count the media added to the playlist.</param>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of media information.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.GetMemberId(System.Int32,System.String)">\r
+            <summary>\r
+            Retrieves the member ID of the media in the playlist.\r
+            </summary>\r
+            <param name="playlistId">The playlist ID.</param>\r
+            <param name="mediaId">The media ID.</param>\r
+            <returns>The member ID if the member was found in the playlist, otherwise -1.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.SelectMember(System.Int32)">\r
+            <summary>\r
+            Retrieves the media information of the playlist.\r
+            </summary>\r
+            <param name="playlistId">The playlist ID to query with.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.SelectMember(System.Int32,Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the media information of the playlist with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="playlistId">The playlist ID to query with.</param>\r
+            <param name="filter">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.Update(System.Int32,Tizen.Content.MediaContent.PlaylistUpdateValues)">\r
+            <summary>\r
+            Updates the playlist with the specified values.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="playlistId">The playlist ID to update.</param>\r
+            <param name="values">The values for the update.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <remarks>Only values set in the <see cref="T:Tizen.Content.MediaContent.PlaylistUpdateValues"/> are updated.</remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="values"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.AddMember(System.Int32,System.String)">\r
+            <summary>\r
+            Adds the media to the playlist.\r
+            </summary>\r
+            <param name="playlistId">The playlist ID that the media will be added to.</param>\r
+            <param name="mediaId">The media ID to add to the playlist.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <remarks>The invalid media ID will be ignored.</remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.AddMembers(System.Int32,System.Collections.Generic.IEnumerable{System.String})">\r
+            <summary>\r
+            Adds the media set to the playlist.\r
+            </summary>\r
+            <param name="playlistId">The playlist ID that the media will be added to.</param>\r
+            <param name="mediaIds">The collection of media ID to add to the playlist.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <remarks>The invalid media IDs will be ignored.</remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaIds"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="mediaIds"/> has no element.\n\r
+                -or-\n\r
+                <paramref name="mediaIds"/> contains null value.\n\r
+                -or-\n\r
+                <paramref name="mediaIds"/> contains a zero-length string or white space.\n\r
+            </exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.RemoveMember(System.Int32,System.Int32)">\r
+            <summary>\r
+            Removes a member from the playlist.\r
+            </summary>\r
+            <param name="playlistId">The playlist ID.</param>\r
+            <param name="memberId">The member ID to be removed.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <remarks>The invalid ID will be ignored.</remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException">\r
+                <paramref name="playlistId"/> is less than or equal to zero.\n\r
+                -or-\n\r
+                <paramref name="memberId"/> is less than or equal to zero.\n\r
+            </exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.RemoveMembers(System.Int32,System.Collections.Generic.IEnumerable{System.Int32})">\r
+            <summary>\r
+            Removes a media set from the playlist.\r
+            </summary>\r
+            <param name="playlistId">The playlist ID.</param>\r
+            <param name="memberIds">The collection of member ID to remove from to the playlist.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <remarks>The invalid IDs will be ignored.</remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="memberIds"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="memberIds"/> has no element.\n\r
+                -or-\n\r
+                <paramref name="memberIds"/> contains a value which is less than or equal to zero.\r
+            </exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.UpdatePlayOrder(System.Int32,Tizen.Content.MediaContent.PlayOrder)">\r
+            <summary>\r
+            Updates a play order of the playlist.\r
+            </summary>\r
+            <param name="playlistId">The playlist ID.</param>\r
+            <param name="playOrder">The <see cref="T:Tizen.Content.MediaContent.PlayOrder"/> to apply.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <remarks>The <see cref="P:Tizen.Content.MediaContent.PlayOrder.MemberId"/> that is invalid will be ignored.</remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="playOrder"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.PlaylistCommand.UpdatePlayOrders(System.Int32,System.Collections.Generic.IEnumerable{Tizen.Content.MediaContent.PlayOrder})">\r
+            <summary>\r
+            Updates play orders of the playlist.\r
+            </summary>\r
+            <param name="playlistId">The playlist ID.</param>\r
+            <param name="orders">The collection of the <see cref="T:Tizen.Content.MediaContent.PlayOrder"/> to apply.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <remarks>The <see cref="P:Tizen.Content.MediaContent.PlayOrder.MemberId"/> that is invalid will be ignored.</remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="orders"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="orders"/> has no element.\n\r
+                -or-\n\r
+                <paramref name="orders"/> contains a null value.\r
+            </exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="playlistId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.PlaylistMember">\r
+            <summary>\r
+            Represents a member of the <see cref="T:Tizen.Content.MediaContent.Playlist"/>.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.PlaylistMember.MemberId">\r
+            <summary>\r
+            Gets the member ID.\r
+            </summary>\r
+            <value>The member ID of the playlist.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.PlaylistMember.MediaInfo">\r
+            <summary>\r
+            Gets the media information of the member.\r
+            </summary>\r
+            <value>The <see cref="P:Tizen.Content.MediaContent.PlaylistMember.MediaInfo"/> of the member.</value>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.QueryArguments">\r
+            <summary>\r
+            The Base class for query arguments.\r
+            </summary>\r
+            <remarks>\r
+            A filter is required for filtering information associated with Album, Folder, Tag, Bookmark, Playlist,\r
+            and MediaInfo on the basis of details like limit, order, and condition.\r
+            </remarks>\r
+        </member>\r
+        <!-- "P:Tizen.Content.MediaContent.QueryArguments.FilterExpression" 멤버에 대해 잘못된 형식의 XML 주석은 무시됩니다. -->\r
+        <member name="P:Tizen.Content.MediaContent.QueryArguments.StorageId">\r
+            <summary>\r
+            Gets or sets the storage ID for the given filter.\r
+            You can use this property when you want to search items only in the specific storage.\r
+            </summary>\r
+            <value>The storage ID to restrict storage to search, or null for all storages.</value>\r
+            <exception cref="T:System.ArgumentException"><paramref name="value"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.SelectArguments">\r
+            <summary>\r
+            Provides the ability to filter the result of a Select command.\r
+            </summary>\r
+            <remarks>\r
+            A filter is required for filtering information associated with Album, Folder, Tag, Bookmark, Playlist,\r
+            and MediaInfo.\r
+            </remarks>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.SelectArguments.StartRowIndex">\r
+            <summary>\r
+            Gets or sets the starting row position of a query (starting from zero).\r
+            </summary>\r
+            <value>An integer value that indicates the starting row position of a query.</value>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="value"/> is less than zero.\n</exception>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.SelectArguments.TotalRowCount">\r
+            <summary>\r
+            Gets or sets the number of rows to be retrieved.\r
+            </summary>\r
+            <value>An integer value that indicates the limit of rows of the result.</value>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="value"/> is less than zero.</exception>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.SelectArguments.SortOrder">\r
+            <summary>\r
+            Gets or sets the sort order of the results.\r
+            </summary>\r
+            <value>The expression for the sort order.</value>\r
+            <remarks>\r
+            Expressions for the sort order can be:\n\r
+            column [COLLATE NOCASE/RTRIM/LOCALIZED] [ASC/DESC], column2 ...\r
+            </remarks>\r
+            <exception cref="T:System.ArgumentException"><paramref name="value"/> is a zero-length string, contains only white space.</exception>\r
+            <seealso cref="T:Tizen.Content.MediaContent.MediaInfoColumns"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.AlbumColumns"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.FolderColumns"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.PlaylistColumns"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.TagColumns"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.BookmarkColumns"/>\r
+            <seealso cref="T:Tizen.Content.MediaContent.FaceInfoColumns"/>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.CountArguments">\r
+            <summary>\r
+            Provides the ability to filter the result of the Count command.\r
+            </summary>\r
+            <remarks>\r
+            A filter is required for filtering information associated with Album, Folder, Tag, Bookmark, Playlist,\r
+            and MediaInfo.\r
+            </remarks>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.RecordNotFoundException">\r
+            <summary>\r
+            The exception that is thrown when no record is found in the database.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.RecordNotFoundException.#ctor">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.RecordNotFoundException"/> class.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.RecordNotFoundException.#ctor(System.String)">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.RecordNotFoundException"/> class with a specified error message.\r
+            </summary>\r
+            <param name="message">The message that describes the error.</param>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.RecordNotFoundException.#ctor(System.String,System.Exception)">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.RecordNotFoundException"/> class with a specified error message\r
+            and a reference to the inner exception that is the cause of this exception.\r
+            </summary>\r
+            <param name="message">The message that describes the error.</param>\r
+            <param name="innerException">The exception that is the cause of the current exception.</param>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.Rectangle">\r
+            <summary>\r
+            Represents the location of the object bounded by the rectangle defined by\r
+            coordinates of top left corner, width, and height.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.Rectangle.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">\r
+            <summary>\r
+            Initializes a new instance of the rectangle with the specified values.\r
+            </summary>\r
+            <param name="x">The x-coordinate of the upper-left corner of the rectangle.</param>\r
+            <param name="y">The y-coordinate of the upper-left corner of the rectangle.</param>\r
+            <param name="width">The width of the rectangle.</param>\r
+            <param name="height">The height of the rectangle.</param>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Rectangle.X">\r
+            <summary>\r
+            Gets or sets the x-coordinate of the upper-left corner of the rectangle.\r
+            </summary>\r
+            <value>The x-coordinate of the upper-left edge of the rectangle.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Rectangle.Y">\r
+            <summary>\r
+            Gets or sets the y-coordinate of the upper-left corner of the rectangle.\r
+            </summary>\r
+            <value>The y-coordinate of the upper-left edge of the rectangle.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Rectangle.Width">\r
+            <summary>\r
+            Gets or sets the width of the rectangle.\r
+            </summary>\r
+            <value>The width of the rectangle.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Rectangle.Height">\r
+            <summary>\r
+            Gets or sets the height of the rectangle.\r
+            </summary>\r
+            <value>The height of the rectangle.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Rectangle.Left">\r
+            <summary>\r
+            Gets the x-coordinate of the left edge of the rectangle.\r
+            </summary>\r
+            <value>The x-coordinate of the left edge of the rectangle.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Rectangle.Top">\r
+            <summary>\r
+            Gets the y-coordinate of the top edge of the rectangle.\r
+            </summary>\r
+            <value>The y-coordinate of the top edge of the rectangle.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Rectangle.Right">\r
+            <summary>\r
+            Gets the x-coordinate of the right edge of the rectangle.\r
+            </summary>\r
+            <value>The x-coordinate of the right edge of the rectangle.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Rectangle.Bottom">\r
+            <summary>\r
+            Gets the y-coordinate of the bottom edge of the rectangle.\r
+            </summary>\r
+            <value>The y-coordinate of the bottom edge of the rectangle.</value>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.Rectangle.ToString">\r
+            <summary>\r
+            Returns a string representation of the rectangle.\r
+            </summary>\r
+            <returns>A string representation of the current rectangle.</returns>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.Rectangle.GetHashCode">\r
+            <summary>\r
+            Returns the hash code for this rectangle structure.\r
+            </summary>\r
+            <returns>An integer that represents the hash code for this rectangle.</returns>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.Rectangle.Equals(System.Object)">\r
+            <summary>\r
+            Tests whether object is a rectangle structure with the same location and size of this rectangle structure.\r
+            </summary>\r
+            <param name="obj">The <see cref="T:System.Object"/> to compare.</param>\r
+            <returns>\r
+            true if object is a rectangle structure and its x, y, width, and height properties are\r
+            equal to the corresponding properties of this rectangle structure; otherwise, false.\r
+            </returns>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.Rectangle.op_Equality(Tizen.Content.MediaContent.Rectangle,Tizen.Content.MediaContent.Rectangle)">\r
+            <summary>\r
+            Tests whether two rectangle structures have equal location and size.\r
+            </summary>\r
+            <param name="rect1">The <see cref="T:Tizen.Content.MediaContent.Rectangle"/> to compare.</param>\r
+            <param name="rect2">The <see cref="T:Tizen.Content.MediaContent.Rectangle"/> to compare.</param>\r
+            <returns>true if the two rectangle structures have equal x, y, width, and height properties; otherwise, false.</returns>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.Rectangle.op_Inequality(Tizen.Content.MediaContent.Rectangle,Tizen.Content.MediaContent.Rectangle)">\r
+            <summary>\r
+            Tests whether two rectangle structures differ in location or size.\r
+            </summary>\r
+            <param name="rect1">The <see cref="T:Tizen.Content.MediaContent.Rectangle"/> to compare.</param>\r
+            <param name="rect2">The <see cref="T:Tizen.Content.MediaContent.Rectangle"/> to compare.</param>\r
+            <returns>true if any of the x, y, width, or height properties of the two rectangle structures are unequal; otherwise false.</returns>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.Storage">\r
+            <summary>\r
+            Represents the storage information for media.\r
+            </summary>\r
+            <remarks>\r
+            The system generates the storage ID when the external storage is added and manages the media information\r
+            in each of the storage by using the storage ID.\r
+            </remarks>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Storage.Id">\r
+            <summary>\r
+            Gets the ID of the storage.\r
+            </summary>\r
+            <value>The unique ID of the storage.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Storage.Path">\r
+            <summary>\r
+            Gets the path of the storage.\r
+            </summary>\r
+            <value>The path of the storage.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Storage.Type">\r
+            <summary>\r
+            Gets the type of the storage.\r
+            </summary>\r
+            <value>The type of the storage.</value>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.Storage.ToString">\r
+            <summary>\r
+            Returns a string representation of the storage.\r
+            </summary>\r
+            <returns>A string representation of the current storage.</returns>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.StorageCommand">\r
+            <summary>\r
+            Provides the commands to manage external storages in the database.\r
+            </summary>\r
+            <remarks>\r
+            The internal storage is not managed.\r
+            </remarks>\r
+            <seealso cref="T:Tizen.Content.MediaContent.Storage"/>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.StorageCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.StorageCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.\r
+            </summary>\r
+            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>\r
+            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.StorageCommand.Count">\r
+            <summary>\r
+            Retrieves the number of storages.\r
+            </summary>\r
+            <returns>The number of storages.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.StorageCommand.Count(Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of storages with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.\r
+            </summary>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of storages filtered.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.StorageCommand.Select(System.String)">\r
+            <summary>\r
+            Retrieves the storage with the specified ID.\r
+            </summary>\r
+            <param name="storageId">The storage ID to select.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.Storage"/> instance if the matched record was found in the database, otherwise null.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="storageId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="storageId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.StorageCommand.Select">\r
+            <summary>\r
+            Retrieves all the storages.\r
+            </summary>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.StorageCommand.Select(Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the storages with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.StorageCommand.CountMedia(System.String)">\r
+            <summary>\r
+            Retrieves the number of media information of the storage.\r
+            </summary>\r
+            <param name="storageId">The storage ID.</param>\r
+            <returns>The number of media information.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="storageId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="storageId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.StorageCommand.CountMedia(System.String,Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of media information of the storage with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.\r
+            </summary>\r
+            <param name="storageId">The storage ID to query with.</param>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of media information.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="storageId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="storageId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.StorageCommand.SelectMedia(System.String)">\r
+            <summary>\r
+            Retrieves the media information of the storage.\r
+            </summary>\r
+            <param name="storageId">The storage ID.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="storageId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="storageId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.StorageCommand.SelectMedia(System.String,Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the media information of the storage with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="storageId">The storage ID.</param>\r
+            <param name="filter">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="storageId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="storageId"/> is a zero-length string, contains only white space.</exception>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.Tag">\r
+            <summary>\r
+            Represents a special piece of information that may be associated with media.\r
+            Tagging allows a user to organize large number of items into logical groups providing\r
+            a simplified and faster way of accessing media items.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Tag.Id">\r
+            <summary>\r
+            Gets the ID of the tag.\r
+            </summary>\r
+            <value>The unique ID of the tag.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.Tag.Name">\r
+            <summary>\r
+            Gets the name of the tag.\r
+            </summary>\r
+            <value>The name of the tag.</value>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.Tag.ToString">\r
+            <summary>\r
+            Returns a string representation of the tag.\r
+            </summary>\r
+            <returns>A string representation of the current tag.</returns>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.TagCommand">\r
+            <summary>\r
+            Provides the commands to manage tags in the database.\r
+            </summary>\r
+            <seealso cref="T:Tizen.Content.MediaContent.Tag"/>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.#ctor(Tizen.Content.MediaContent.MediaDatabase)">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.TagCommand"/> class with the specified <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/>.\r
+            </summary>\r
+            <param name="database">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> that the commands run on.</param>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="database"/> is null.</exception>\r
+            <exception cref="T:System.ObjectDisposedException"><paramref name="database"/> has already been disposed of.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.Count">\r
+            <summary>\r
+            Retrieves the number of tags.\r
+            </summary>\r
+            <returns>The number of tags.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.Count(Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of tags with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.\r
+            </summary>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of tags filtered.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.Delete(System.Int32)">\r
+            <summary>\r
+            Deletes a tag from the database.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="tagId">The tag ID to delete.</param>\r
+            <returns>true if the matched record was found and deleted, otherwise false.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.Insert(System.String)">\r
+            <summary>\r
+            Inserts a tag into the database with the specified name.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="name">The name of tag.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.Tag"/> instance that contains the record information inserted.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is null.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.UpdateName(System.Int32,System.String)">\r
+            <summary>\r
+            Updates a tag with the specified name.\r
+            </summary>\r
+            <privilege>http://tizen.org/privilege/content.write</privilege>\r
+            <param name="tagId">The tag ID to update.</param>\r
+            <param name="name">The new name.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">The caller has no required privilege.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.Select(System.Int32)">\r
+            <summary>\r
+            Retrieves the tag with the specified ID.\r
+            </summary>\r
+            <param name="tagId">The tag ID to select.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.Tag"/> instance if the matched record was found in the database, otherwise null.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.Select">\r
+            <summary>\r
+            Retrieves all the tags.\r
+            </summary>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.Select(Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the tags with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.CountMedia(System.Int32)">\r
+            <summary>\r
+            Retrieves the number of media info of the tag.\r
+            </summary>\r
+            <param name="tagId">The tag ID.</param>\r
+            <returns>The number of the media information.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.CountMedia(System.Int32,Tizen.Content.MediaContent.CountArguments)">\r
+            <summary>\r
+            Retrieves the number of the media information of the tag with the <see cref="T:Tizen.Content.MediaContent.CountArguments"/>.\r
+            </summary>\r
+            <param name="tagId">The tag ID to query with.</param>\r
+            <param name="arguments">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The number of the media information.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.SelectMedia(System.Int32)">\r
+            <summary>\r
+            Retrieves the media information of the tag.\r
+            </summary>\r
+            <param name="tagId">The tag ID.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.SelectMedia(System.Int32,Tizen.Content.MediaContent.SelectArguments)">\r
+            <summary>\r
+            Retrieves the media information of the tag with the <see cref="T:Tizen.Content.MediaContent.SelectArguments"/>.\r
+            </summary>\r
+            <param name="tagId">The tag ID.</param>\r
+            <param name="filter">The criteria to use to filter. This value can be null.</param>\r
+            <returns>The <see cref="T:Tizen.Content.MediaContent.MediaDataReader`1"/> containing the results.</returns>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.AddMedia(System.Int32,System.String)">\r
+            <summary>\r
+            Adds the media to a tag.\r
+            </summary>\r
+            <param name="tagId">The tag ID that the media will be added to.</param>\r
+            <param name="mediaId">The media ID to add to the tag.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <remarks>The invalid media ID will be ignored.</remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.AddMedia(System.Int32,System.Collections.Generic.IEnumerable{System.String})">\r
+            <summary>\r
+            Adds the media set to a tag.\r
+            </summary>\r
+            <param name="tagId">The tag ID that the media will be added to.</param>\r
+            <param name="mediaIds">The media ID to add to the tag.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <remarks>The invalid media IDs will be ignored.</remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaIds"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="mediaIds"/> has no element.\n\r
+                -or-\n\r
+                <paramref name="mediaIds"/> contains null value.\n\r
+                -or-\n\r
+                <paramref name="mediaIds"/> contains a zero-length string, contains only white space.\n\r
+            </exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.RemoveMedia(System.Int32,System.String)">\r
+            <summary>\r
+            Removes the media from a tag.\r
+            </summary>\r
+            <param name="tagId">The tag ID.</param>\r
+            <param name="mediaId">The media ID to remove from the tag.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <remarks>The invalid media ID will be ignored.</remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaId"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException"><paramref name="mediaId"/> is a zero-length string, contains only white space.</exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.TagCommand.RemoveMedia(System.Int32,System.Collections.Generic.IEnumerable{System.String})">\r
+            <summary>\r
+            Removes the media set from a tag.\r
+            </summary>\r
+            <param name="tagId">The tag ID.</param>\r
+            <param name="mediaIds">The collection of media ID to remove from the tag.</param>\r
+            <returns>true if the matched record was found and updated, otherwise false.</returns>\r
+            <remarks>The invalid IDs will be ignored.</remarks>\r
+            <exception cref="T:System.InvalidOperationException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> is disconnected.</exception>\r
+            <exception cref="T:System.ObjectDisposedException">The <see cref="T:Tizen.Content.MediaContent.MediaDatabase"/> has already been disposed of.</exception>\r
+            <exception cref="T:Tizen.Content.MediaContent.MediaDatabaseException">An error occurred while executing the command.</exception>\r
+            <exception cref="T:System.ArgumentNullException"><paramref name="mediaIds"/> is null.</exception>\r
+            <exception cref="T:System.ArgumentException">\r
+                <paramref name="mediaIds"/> has no element.\n\r
+                -or-\n\r
+                <paramref name="mediaIds"/> contains null value.\n\r
+                -or-\n\r
+                <paramref name="mediaIds"/> contains a zero-length string or white space.\n\r
+            </exception>\r
+            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tagId"/> is less than or equal to zero.</exception>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.UnsupportedContentException">\r
+            <summary>\r
+            The exception that is thrown when a requested operation is not supported for content.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.UnsupportedContentException.#ctor">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.UnsupportedContentException"/> class.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.UnsupportedContentException.#ctor(System.String)">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.UnsupportedContentException"/> class with a specified error message.\r
+            </summary>\r
+            <param name="message">The message that describes the error.</param>\r
+        </member>\r
+        <member name="M:Tizen.Content.MediaContent.UnsupportedContentException.#ctor(System.String,System.Exception)">\r
+            <summary>\r
+            Initializes a new instance of the <see cref="T:Tizen.Content.MediaContent.UnsupportedContentException"/> class with a specified error message\r
+            and a reference to the inner exception that is the cause of this exception.\r
+            </summary>\r
+            <param name="message">The message that describes the error.</param>\r
+            <param name="innerException">The exception that is the cause of the current exception.</param>\r
+        </member>\r
+        <member name="T:Tizen.Content.MediaContent.VideoInfo">\r
+            <summary>\r
+            Represents a video media information.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.VideoInfo.Album">\r
+            <summary>\r
+            Gets the album name.\r
+            </summary>\r
+            <value>The album name from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.VideoInfo.Artist">\r
+            <summary>\r
+            Gets the artist name.\r
+            </summary>\r
+            <value>The artist name from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.VideoInfo.AlbumArtist">\r
+            <summary>\r
+            Gets the album artist name.\r
+            </summary>\r
+            <value>The album artist name from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.VideoInfo.Genre">\r
+            <summary>\r
+            Gets the genre.\r
+            </summary>\r
+            <value>The genre name from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.VideoInfo.Composer">\r
+            <summary>\r
+            Gets the composer name.\r
+            </summary>\r
+            <value>The composer name from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.VideoInfo.Year">\r
+            <summary>\r
+            Gets the year.\r
+            </summary>\r
+            <value>The year from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.VideoInfo.DateRecorded">\r
+            <summary>\r
+            Gets the recorded date.\r
+            </summary>\r
+            <value>The recorded date information from the metadata if exists; otherwise, the modified date of the file.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.VideoInfo.Copyright">\r
+            <summary>\r
+            Gets the copyright notice.\r
+            </summary>\r
+            <value>The copyright notice from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.VideoInfo.TrackNumber">\r
+            <summary>\r
+            Gets the track number.\r
+            </summary>\r
+            <value>The track number from the metadata.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.VideoInfo.BitRate">\r
+            <summary>\r
+            Gets the bitrate in bit per second.\r
+            </summary>\r
+            <value>The bit rate of the video.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.VideoInfo.Duration">\r
+            <summary>\r
+            Gets the track duration in milliseconds.\r
+            </summary>\r
+            <value>The track duration of the video in milliseconds.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.VideoInfo.Width">\r
+            <summary>\r
+            Gets the video width in pixels.\r
+            </summary>\r
+            <value>The width of the video in pixels.</value>\r
+        </member>\r
+        <member name="P:Tizen.Content.MediaContent.VideoInfo.Height">\r
+            <summary>\r
+            Gets the video height in pixels.\r
+            </summary>\r
+            <value>The height of the video in pixels.</value>\r
+        </member>\r
+    </members>\r
+</doc>\r