From ee30595839962deb1c2e9dacef3d9edb7a06af07 Mon Sep 17 00:00:00 2001 From: coderhyme Date: Thu, 19 Oct 2017 14:05:50 +0900 Subject: [PATCH] [MediaContent] Replaced '\n' with the br tag in doc-comments. Change-Id: Iaa61ad52e753855ee1f7a6e4c2053f0b77e5e0dc Signed-off-by: coderhyme --- .../Tizen.Content.MediaContent/MediaDatabase.cs | 60 ++++++++-------- .../Tizen.Content.MediaContent/MediaInfoCommand.cs | 84 +++++++++++----------- .../Tizen.Content.MediaContent/PlayList.cs | 4 +- .../Tizen.Content.MediaContent/PlaylistCommand.cs | 44 ++++++------ .../Tizen.Content.MediaContent/QueryArguments.cs | 10 +-- .../Tizen.Content.MediaContent/TagCommand.cs | 20 +++--- 6 files changed, 111 insertions(+), 111 deletions(-) diff --git a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/MediaDatabase.cs b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/MediaDatabase.cs index 004b3ed..c6bee10 100644 --- a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/MediaDatabase.cs +++ b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/MediaDatabase.cs @@ -193,14 +193,14 @@ namespace Tizen.Content.MediaContent /// /// The path of the media to be scanned. /// - /// It requests to scan a media file to the media server.\n + /// It requests to scan a media file to the media server.
/// 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 + /// the media file information will be added to the database.
+ /// If it is already registered to the database, the media information is refreshed.
/// 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 + /// the record of the media file will be deleted from the database.
+ ///
+ /// If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.
/// If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage. ///
/// http://tizen.org/privilege/content.write @@ -210,10 +210,10 @@ namespace Tizen.Content.MediaContent /// The has already been disposed of. /// is null. /// - /// is a zero-length string, contains only white space.\n - /// -or-\n - /// contains a hidden path that starts with '.'.\n - /// -or-\n + /// is a zero-length string, contains only white space.
+ /// -or-
+ /// contains a hidden path that starts with '.'.
+ /// -or-
/// contains a directory containing the ".scan_ignore" file. ///
/// The caller has no required privilege. @@ -230,7 +230,7 @@ namespace Tizen.Content.MediaContent /// Requests to scan a folder recursively. /// /// - /// If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n + /// If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.
/// If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage. ///
/// http://tizen.org/privilege/content.write @@ -244,10 +244,10 @@ namespace Tizen.Content.MediaContent /// The caller has no required privilege. /// is null. /// - /// is a zero-length string, contains only white space.\n - /// -or-\n - /// contains a hidden path that starts with '.'.\n - /// -or-\n + /// is a zero-length string, contains only white space.
+ /// -or-
+ /// contains a hidden path that starts with '.'.
+ /// -or-
/// contains a directory containing the ".scan_ignore" file. ///
public Task ScanFolderAsync(string folderPath) @@ -259,7 +259,7 @@ namespace Tizen.Content.MediaContent /// Requests to scan a folder. /// /// - /// If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n + /// If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.
/// If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage. ///
/// http://tizen.org/privilege/content.write @@ -274,10 +274,10 @@ namespace Tizen.Content.MediaContent /// The caller has no required privilege. /// is null. /// - /// is a zero-length string, contains only white space.\n - /// -or-\n - /// contains a hidden path that starts with '.'.\n - /// -or-\n + /// is a zero-length string, contains only white space.
+ /// -or-
+ /// contains a hidden path that starts with '.'.
+ /// -or-
/// contains a directory containing the ".scan_ignore" file. ///
public Task ScanFolderAsync(string folderPath, bool recursive) @@ -289,7 +289,7 @@ namespace Tizen.Content.MediaContent /// Requests to scan a folder recursively. /// /// - /// If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n + /// If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.
/// If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage. ///
/// http://tizen.org/privilege/content.write @@ -304,10 +304,10 @@ namespace Tizen.Content.MediaContent /// The caller has no required privilege. /// is null. /// - /// is a zero-length string, contains only white space.\n - /// -or-\n - /// contains a hidden path that starts with '.'.\n - /// -or-\n + /// is a zero-length string, contains only white space.
+ /// -or-
+ /// contains a hidden path that starts with '.'.
+ /// -or-
/// contains a directory containing the ".scan_ignore" file. ///
public Task ScanFolderAsync(string folderPath, CancellationToken cancellationToken) @@ -319,7 +319,7 @@ namespace Tizen.Content.MediaContent /// Requests to scan a folder recursively. /// /// - /// If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n + /// If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.
/// If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage. ///
/// http://tizen.org/privilege/content.write @@ -335,10 +335,10 @@ namespace Tizen.Content.MediaContent /// The caller has no required privilege. /// is null. /// - /// is a zero-length string, contains only white space.\n - /// -or-\n - /// contains a hidden path that starts with '.'.\n - /// -or-\n + /// is a zero-length string, contains only white space.
+ /// -or-
+ /// contains a hidden path that starts with '.'.
+ /// -or-
/// contains a directory containing the ".scan_ignore" file. ///
public Task ScanFolderAsync(string folderPath, bool recursive, CancellationToken cancellationToken) diff --git a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/MediaInfoCommand.cs b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/MediaInfoCommand.cs index 652fabe..1e52a97 100644 --- a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/MediaInfoCommand.cs +++ b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/MediaInfoCommand.cs @@ -482,11 +482,11 @@ namespace Tizen.Content.MediaContent /// The file path to add. /// The instance that contains the record information in the database. /// - /// If the media already exists in the database, it returns the existing information.\n - /// \n - /// The or the can be used instead.\n - /// \n - /// If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n + /// If the media already exists in the database, it returns the existing information.
+ ///
+ /// The or the can be used instead.
+ ///
+ /// If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.
/// If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage. ///
/// http://tizen.org/privilege/content.write @@ -497,10 +497,10 @@ namespace Tizen.Content.MediaContent /// An error occurred while executing the command. /// is null. /// - /// is a zero-length string, contains only white space.\n - /// -or-\n - /// contains a hidden path that starts with '.'.\n - /// -or-\n + /// is a zero-length string, contains only white space.
+ /// -or-
+ /// contains a hidden path that starts with '.'.
+ /// -or-
/// contains a directory containing the ".scan_ignore" file. ///
/// does not exists. @@ -569,10 +569,10 @@ namespace Tizen.Content.MediaContent /// Adds media files into the media database. /// /// - /// 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 + /// The paths that already exist in the database will be ignored.
+ /// At most 300 items can be added at once.
+ ///
+ /// If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.
/// If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage. ///
/// http://tizen.org/privilege/content.write @@ -585,10 +585,10 @@ namespace Tizen.Content.MediaContent /// An error occurred while executing the command. /// is null. /// - /// contains null.\n - /// -or-\n - /// contains the invalid path.\n - /// -or-\n + /// contains null.
+ /// -or-
+ /// contains the invalid path.
+ /// -or-
/// The number of is 300 or more items. ///
/// contains a path that does not exist. @@ -677,26 +677,26 @@ namespace Tizen.Content.MediaContent /// The path that the media has been moved to. /// true if the matched record was found and updated, otherwise false. /// - /// 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 + /// Usually, it is used after the media file is moved to the another path.
+ ///
+ /// If you want to access internal storage, you should add privilege http://tizen.org/privilege/mediastorage.
/// If you want to access external storage, you should add privilege http://tizen.org/privilege/externalstorage. ///
/// The is disconnected. /// The has already been disposed of. /// An error occurred while executing the command. /// - /// is null.\n - /// -or-\n + /// is null.
+ /// -or-
/// is null. ///
/// - /// is a zero-length string, contains only white space.\n - /// -or-\n - /// is a zero-length string, contains only white space.\n - /// -or-\n - /// contains a hidden directory that starts with '.'.\n - /// -or-\n + /// is a zero-length string, contains only white space.
+ /// -or-
+ /// is a zero-length string, contains only white space.
+ /// -or-
+ /// contains a hidden directory that starts with '.'.
+ /// -or-
/// contains a directory containing the ".scan_ignore" file. ///
/// does not exists. @@ -749,8 +749,8 @@ namespace Tizen.Content.MediaContent /// The media ID to create the thumbnail. /// A task that represents the asynchronous operation. The task result contains the thumbnail path. /// - /// The is disconnected.\n - /// -or-\n + /// The is disconnected.
+ /// -or-
/// An internal error occurred while executing. ///
/// The has already been disposed of. @@ -762,8 +762,8 @@ namespace Tizen.Content.MediaContent /// /// The file of the media does not exists; moved or deleted. /// - /// The thumbnail is not available for the given media.\n - /// -or-\n + /// The thumbnail is not available for the given media.
+ /// -or-
/// The media is in the external USB storage ( is ). ///
public Task CreateThumbnailAsync(string mediaId) @@ -780,8 +780,8 @@ namespace Tizen.Content.MediaContent /// The token to cancel the operation. /// A task that represents the asynchronous operation. The task result contains the thumbnail path. /// - /// The is disconnected.\n - /// -or-\n + /// The is disconnected.
+ /// -or-
/// An internal error occurred while executing. ///
/// The has already been disposed of. @@ -793,8 +793,8 @@ namespace Tizen.Content.MediaContent /// /// The file of the media does not exists; moved or deleted. /// - /// The thumbnail is not available for the given media.\n - /// -or-\n + /// The thumbnail is not available for the given media.
+ /// -or-
/// The media is in the external USB storage ( is ). ///
public Task CreateThumbnailAsync(string mediaId, CancellationToken cancellationToken) @@ -889,8 +889,8 @@ namespace Tizen.Content.MediaContent /// The media ID to create the thumbnail. /// A task that represents the asynchronous add operation. The task result contains the number of faces detected. /// - /// The is disconnected.\n - /// -or-\n + /// The is disconnected.
+ /// -or-
/// An internal error occurred while executing. ///
/// The has already been disposed of. @@ -922,8 +922,8 @@ namespace Tizen.Content.MediaContent /// The token to cancel the operation. /// A task that represents the asynchronous operation. The task result contains the number of faces detected. /// - /// The is disconnected.\n - /// -or-\n + /// The is disconnected.
+ /// -or-
/// An internal error occurred while executing. ///
/// The has already been disposed of. @@ -935,8 +935,8 @@ namespace Tizen.Content.MediaContent /// /// The file of the media does not exists; moved or deleted. /// - /// Face detection is not available for the given media.\n - /// -or-\n + /// Face detection is not available for the given media.
+ /// -or-
/// The media is in the external USB storage ( is ). ///
/// The required feature is not supported. diff --git a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/PlayList.cs b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/PlayList.cs index ccc3ec2..a7bb9d5 100755 --- a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/PlayList.cs +++ b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/PlayList.cs @@ -94,8 +94,8 @@ namespace Tizen.Content.MediaContent /// The ID of the member. /// The order value. /// - /// is less than or equal to zero.\n - /// -or-\n + /// is less than or equal to zero.
+ /// -or-
/// is less than zero. ///
public PlayOrder(int memberId, int orderValue) diff --git a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/PlaylistCommand.cs b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/PlaylistCommand.cs index 51b2de8..10d05ba 100644 --- a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/PlaylistCommand.cs +++ b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/PlaylistCommand.cs @@ -74,8 +74,8 @@ namespace Tizen.Content.MediaContent /// The has already been disposed of. /// An error occurred while executing the command. /// - /// is less than or equal to zero.\n - /// -or-\n + /// is less than or equal to zero.
+ /// -or-
/// is less than or equal to zero. ///
public int GetPlayOrder(int playlistId, int memberId) @@ -133,7 +133,7 @@ namespace Tizen.Content.MediaContent /// Inserts the playlist into the database from the specified M3U file. /// /// - /// If you want to access an internal storage, you should add privilege http://tizen.org/privilege/mediastorage.\n + /// If you want to access an internal storage, you should add privilege http://tizen.org/privilege/mediastorage.
/// If you want to access an external storage, you should add privilege http://tizen.org/privilege/externalstorage. ///
/// http://tizen.org/privilege/content.write @@ -146,13 +146,13 @@ namespace Tizen.Content.MediaContent /// The has already been disposed of. /// An error occurred while executing the command. /// - /// is null.\n - /// -or-\n + /// is null.
+ /// -or-
/// is null. ///
/// - /// is a zero-length string.\n - /// -or-\n + /// is a zero-length string.
+ /// -or-
/// is a zero-length string, contains only white space. ///
/// does not exists. @@ -197,9 +197,9 @@ namespace Tizen.Content.MediaContent /// Exports the playlist to a M3U file. /// /// - /// 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 the file already exists in the file system, then it will be overwritten.
+ ///
+ /// If you want to access an internal storage, you should add privilege http://tizen.org/privilege/mediastorage.
/// If you want to access an external storage, you should add privilege http://tizen.org/privilege/externalstorage. ///
/// http://tizen.org/privilege/mediastorage @@ -616,11 +616,11 @@ namespace Tizen.Content.MediaContent /// An error occurred while executing the command. /// is null. /// - /// has no element.\n - /// -or-\n - /// contains null value.\n - /// -or-\n - /// contains a zero-length string or white space.\n + /// has no element.
+ /// -or-
+ /// contains null value.
+ /// -or-
+ /// contains a zero-length string or white space. ///
/// is less than or equal to zero. public bool AddMembers(int playlistId, IEnumerable mediaIds) @@ -692,9 +692,9 @@ namespace Tizen.Content.MediaContent /// The has already been disposed of. /// An error occurred while executing the command. /// - /// is less than or equal to zero.\n - /// -or-\n - /// is less than or equal to zero.\n + /// is less than or equal to zero.
+ /// -or-
+ /// is less than or equal to zero. ///
public bool RemoveMember(int playlistId, int memberId) { @@ -719,8 +719,8 @@ namespace Tizen.Content.MediaContent /// An error occurred while executing the command. /// is null. /// - /// has no element.\n - /// -or-\n + /// has no element.
+ /// -or-
/// contains a value which is less than or equal to zero. ///
/// is less than or equal to zero. @@ -811,8 +811,8 @@ namespace Tizen.Content.MediaContent /// An error occurred while executing the command. /// is null. /// - /// has no element.\n - /// -or-\n + /// has no element.
+ /// -or-
/// contains a null value. ///
/// is less than or equal to zero. diff --git a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/QueryArguments.cs b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/QueryArguments.cs index 80a01fc..2d8516d 100644 --- a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/QueryArguments.cs +++ b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/QueryArguments.cs @@ -60,9 +60,9 @@ namespace Tizen.Content.MediaContent /// /// Note that if you want to set quotation (" ' " or " " ") as value of LIKE operator, you should use two times. (" '' " or " "" "). /// And the optional ESCAPE clause is supported. Both percent symbol("%") and underscore symbol("_") are used in the LIKE pattern. - /// If these characters are used as values of the LIKE operation, then the expression following the ESCAPE clause of sqlite will be ignored.\n - /// \n - /// For example,\n + /// If these characters are used as values of the LIKE operation, then the expression following the ESCAPE clause of sqlite will be ignored.
+ ///
+ /// For example,
/// - column LIKE ('#%') ESCAPE ('#') - "#" is an escape character, it will be ignored. /// /// is a zero-length string, contains only white space. @@ -179,7 +179,7 @@ namespace Tizen.Content.MediaContent /// Gets or sets the starting row position of a query (starting from zero). /// /// An integer value that indicates the starting row position of a query. - /// is less than zero.\n + /// is less than zero.
public int StartRowIndex { get => _startRowIndex; @@ -222,7 +222,7 @@ namespace Tizen.Content.MediaContent /// /// The expression for the sort order. /// - /// Expressions for the sort order can be:\n + /// Expressions for the sort order can be:
/// column [COLLATE NOCASE/RTRIM/LOCALIZED] [ASC/DESC], column2 ... ///
/// is a zero-length string, contains only white space. diff --git a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/TagCommand.cs b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/TagCommand.cs index 3f11554..60d703d 100644 --- a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/TagCommand.cs +++ b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/TagCommand.cs @@ -412,11 +412,11 @@ namespace Tizen.Content.MediaContent /// An error occurred while executing the command. /// is null. /// - /// has no element.\n - /// -or-\n - /// contains null value.\n - /// -or-\n - /// contains a zero-length string, contains only white space.\n + /// has no element.
+ /// -or-
+ /// contains null value.
+ /// -or-
+ /// contains a zero-length string, contains only white space. ///
/// is less than or equal to zero. public bool AddMedia(int tagId, IEnumerable mediaIds) @@ -456,11 +456,11 @@ namespace Tizen.Content.MediaContent /// An error occurred while executing the command. /// is null. /// - /// has no element.\n - /// -or-\n - /// contains null value.\n - /// -or-\n - /// contains a zero-length string or white space.\n + /// has no element.
+ /// -or-
+ /// contains null value.
+ /// -or-
+ /// contains a zero-length string or white space. ///
/// is less than or equal to zero. public bool RemoveMedia(int tagId, IEnumerable mediaIds) -- 2.7.4