Fixed doxygen errors
authorSeonah Moon <seonah1.moon@samsung.com>
Tue, 30 May 2017 04:50:07 +0000 (13:50 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Tue, 30 May 2017 04:50:23 +0000 (13:50 +0900)
Change-Id: Ibb9cd28c38db90b19f99845b468fb267d241fdb9
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
packaging/csapi-download.spec
src/Tizen.Content.Download/Tizen.Content.Download/DownloadEnumerator.cs
src/Tizen.Content.Download/Tizen.Content.Download/Request.cs

index 87e95b5..2c88b46 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       csapi-download
 Summary:    Tizen Download API for C#
-Version:    1.0.4
+Version:    1.0.5
 Release:    1
 Group:      Development/Libraries
 License:    Apache-2.0
index 6d5a8e2..2091ee7 100755 (executable)
@@ -23,35 +23,35 @@ namespace Tizen.Content.Download
     {
         /// <summary>
         /// Unhandled exception
-        /// <summary>
+        /// </summary>
         None = 0,
         /// <summary>
         /// Ready to download
-        /// <summary>
+        /// </summary>
         Ready,
         /// <summary>
         /// Queued to start downloading
-        /// <summary>
+        /// </summary>
         Queued,
         /// <summary>
         /// Currently downloading
-        /// <summary>
+        /// </summary>
         Downloading,
         /// <summary>
         /// Download is paused and can be resumed
-        /// <summary>
+        /// </summary>
         Paused,
         /// <summary>
         /// The download is completed
-        /// <summary>
+        /// </summary>
         Completed,
         /// <summary>
         /// The download failed
-        /// <summary>
+        /// </summary>
         Failed,
         /// <summary>
         /// User canceled the download request
-        /// <summary>
+        /// </summary>
         Canceled
     }
 
@@ -62,19 +62,19 @@ namespace Tizen.Content.Download
     {
         /// <summary>
         /// Download is available through data network
-        /// <summary>
+        /// </summary>
         DataNetwork = 0,
         /// <summary>
         /// Download is available through WiFi
-        /// <summary>
+        /// </summary>
         Wifi,
         /// <summary>
         /// Download is available through WiFi-Direct
-        /// <summary>
+        /// </summary>
         WifiDirect,
         /// <summary>
         /// Download is available through either data network or WiFi
-        /// <summary>
+        /// </summary>
         All
     }
 
@@ -85,15 +85,15 @@ namespace Tizen.Content.Download
     {
         /// <summary>
         /// Do not register notification
-        /// <summary>
+        /// </summary>
         None = 0,
         /// <summary>
         /// Completion notification for success state and failed state
-        /// <summary>
+        /// </summary>
         CompleteOnly,
         /// <summary>
         /// All download notifications for ongoing state, success state and failed state
-        /// <summary>
+        /// </summary>
         All
     }
 
index 880fcfe..38183e2 100755 (executable)
@@ -541,7 +541,7 @@ namespace Tizen.Content.Download
 
         /// <summary>
         /// HTTP header field and value pairs to the download request.
-        /// HTTP header <field,value> pair is the <key,value> pair in the Dictionary HttpHeaders
+        /// HTTP header &lt;field,value&gt; pair is the &lt;key,value&gt; pair in the Dictionary HttpHeaders
         /// The given HTTP header field will be included with the HTTP request of the download request.
         /// If you try to get this property value before setting, an empty dictionary is returned.
         /// </summary>