From b5eee5be1f7553933de782a775e5c236789324de Mon Sep 17 00:00:00 2001 From: Seonah Moon Date: Tue, 30 May 2017 13:50:07 +0900 Subject: [PATCH] Fixed doxygen errors Change-Id: Ibb9cd28c38db90b19f99845b468fb267d241fdb9 Signed-off-by: Seonah Moon --- packaging/csapi-download.spec | 2 +- .../Tizen.Content.Download/DownloadEnumerator.cs | 30 +++++++++++----------- .../Tizen.Content.Download/Request.cs | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/packaging/csapi-download.spec b/packaging/csapi-download.spec index 87e95b5..2c88b46 100755 --- a/packaging/csapi-download.spec +++ b/packaging/csapi-download.spec @@ -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 diff --git a/src/Tizen.Content.Download/Tizen.Content.Download/DownloadEnumerator.cs b/src/Tizen.Content.Download/Tizen.Content.Download/DownloadEnumerator.cs index 6d5a8e2..2091ee7 100755 --- a/src/Tizen.Content.Download/Tizen.Content.Download/DownloadEnumerator.cs +++ b/src/Tizen.Content.Download/Tizen.Content.Download/DownloadEnumerator.cs @@ -23,35 +23,35 @@ namespace Tizen.Content.Download { /// /// Unhandled exception - /// + /// None = 0, /// /// Ready to download - /// + /// Ready, /// /// Queued to start downloading - /// + /// Queued, /// /// Currently downloading - /// + /// Downloading, /// /// Download is paused and can be resumed - /// + /// Paused, /// /// The download is completed - /// + /// Completed, /// /// The download failed - /// + /// Failed, /// /// User canceled the download request - /// + /// Canceled } @@ -62,19 +62,19 @@ namespace Tizen.Content.Download { /// /// Download is available through data network - /// + /// DataNetwork = 0, /// /// Download is available through WiFi - /// + /// Wifi, /// /// Download is available through WiFi-Direct - /// + /// WifiDirect, /// /// Download is available through either data network or WiFi - /// + /// All } @@ -85,15 +85,15 @@ namespace Tizen.Content.Download { /// /// Do not register notification - /// + /// None = 0, /// /// Completion notification for success state and failed state - /// + /// CompleteOnly, /// /// All download notifications for ongoing state, success state and failed state - /// + /// All } diff --git a/src/Tizen.Content.Download/Tizen.Content.Download/Request.cs b/src/Tizen.Content.Download/Tizen.Content.Download/Request.cs index 880fcfe..38183e2 100755 --- a/src/Tizen.Content.Download/Tizen.Content.Download/Request.cs +++ b/src/Tizen.Content.Download/Tizen.Content.Download/Request.cs @@ -541,7 +541,7 @@ namespace Tizen.Content.Download /// /// HTTP header field and value pairs to the download request. - /// HTTP header pair is the pair in the Dictionary HttpHeaders + /// HTTP header <field,value> pair is the <key,value> 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. /// -- 2.7.4