[MediaContent] Remove .scan_ignore documentation (#6847)
authorHaesu Gwon <haesu.gwon@samsung.com>
Tue, 22 Apr 2025 02:56:37 +0000 (11:56 +0900)
committerGitHub <noreply@github.com>
Tue, 22 Apr 2025 02:56:37 +0000 (11:56 +0900)
* [MediaContent] Remove .scan_ignore documentation

src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/MediaDatabase.cs

index b0e69255c3a74b3c3201eca2734ee27906aba0bd..97931a8c21a06203d87794727241ded2d3caa17f 100644 (file)
@@ -223,7 +223,7 @@ namespace Tizen.Content.MediaContent
         ///     -or-<br/>
         ///     <paramref name="path"/> contains a hidden path that starts with '.'.<br/>
         ///     -or-<br/>
-        ///     <paramref name="path"/> contains a directory containing the ".scan_ignore" file.
+        ///     <paramref name="path"/> contains a directory containing the ".scan_ignore" file.(up to API Level 12)
         /// </exception>
         /// <exception cref="UnauthorizedAccessException">The caller has no required privilege.</exception>
         /// <exception cref="NotSupportedException">The required feature is not supported.</exception>
@@ -248,7 +248,7 @@ namespace Tizen.Content.MediaContent
         /// <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>
+        /// <remarks>Folders that contains a file named ".scan_ignore" will not be scanned.(up to API Level 12)</remarks>
         /// <returns>A task that represents the asynchronous scan operation.</returns>
         /// <exception cref="InvalidOperationException">The database is not connected.</exception>
         /// <exception cref="ObjectDisposedException">The <see cref="MediaDatabase"/> has already been disposed.</exception>
@@ -259,7 +259,7 @@ namespace Tizen.Content.MediaContent
         ///     -or-<br/>
         ///     <paramref name="folderPath"/> contains a hidden path that starts with '.'.<br/>
         ///     -or-<br/>
-        ///     <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.
+        ///     <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.(up to API Level 12)
         /// </exception>
         /// <since_tizen> 4 </since_tizen>
         public Task ScanFolderAsync(string folderPath)
@@ -279,7 +279,7 @@ namespace Tizen.Content.MediaContent
         /// <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>
+        /// <remarks>Folders that contains a file named ".scan_ignore" will not be scanned.(up to API Level 12)</remarks>
         /// <returns>A task that represents the asynchronous scan operation.</returns>
         /// <exception cref="InvalidOperationException">The database is not connected.</exception>
         /// <exception cref="ObjectDisposedException">The <see cref="MediaDatabase"/> has already been disposed.</exception>
@@ -290,7 +290,7 @@ namespace Tizen.Content.MediaContent
         ///     -or-<br/>
         ///     <paramref name="folderPath"/> contains a hidden path that starts with '.'.<br/>
         ///     -or-<br/>
-        ///     <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.
+        ///     <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.(up to API Level 12)
         /// </exception>
         /// <since_tizen> 4 </since_tizen>
         public Task ScanFolderAsync(string folderPath, bool recursive)
@@ -310,7 +310,7 @@ namespace Tizen.Content.MediaContent
         /// <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>
+        /// <remarks>Folders that contains a file named ".scan_ignore" will not be scanned.(up to API Level 12)</remarks>
         /// <returns>A task that represents the asynchronous scan operation.</returns>
         /// <exception cref="InvalidOperationException">The database is not connected.</exception>
         /// <exception cref="ObjectDisposedException">The <see cref="MediaDatabase"/> has already been disposed.</exception>
@@ -321,7 +321,7 @@ namespace Tizen.Content.MediaContent
         ///     -or-<br/>
         ///     <paramref name="folderPath"/> contains a hidden path that starts with '.'.<br/>
         ///     -or-<br/>
-        ///     <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.
+        ///     <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.(up to API Level 12)
         /// </exception>
         /// <since_tizen> 4 </since_tizen>
         public Task ScanFolderAsync(string folderPath, CancellationToken cancellationToken)
@@ -342,7 +342,7 @@ namespace Tizen.Content.MediaContent
         /// <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>
+        /// <remarks>Folders that contains a file named ".scan_ignore" will not be scanned.(up to API Level 12)</remarks>
         /// <returns>A task that represents the asynchronous scan operation.</returns>
         /// <exception cref="InvalidOperationException">The database is not connected.</exception>
         /// <exception cref="ObjectDisposedException">The <see cref="MediaDatabase"/> has already been disposed.</exception>
@@ -353,7 +353,7 @@ namespace Tizen.Content.MediaContent
         ///     -or-<br/>
         ///     <paramref name="folderPath"/> contains a hidden path that starts with '.'.<br/>
         ///     -or-<br/>
-        ///     <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.
+        ///     <paramref name="folderPath"/> contains a directory containing the ".scan_ignore" file.(up to API Level 12)
         /// </exception>
         /// <since_tizen> 4 </since_tizen>
         public Task ScanFolderAsync(string folderPath, bool recursive, CancellationToken cancellationToken)