summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInkyun Kil <inkyun.kil@samsung.com>2017-05-30 10:14:34 +0900
committerJiwoong Im <jiwoong.im@samsung.com>2017-06-16 01:30:47 +0000
commit94c21b34bc3c89dfedc3cd6d4a4c4c77e6c5a54f (patch)
treeb8c966a5336d322c7c7e1608382624dc1abb61bd
parentd54fc2d4028019b1e0c14e647c4a0b835656f0e2 (diff)
downloadapplication-94c21b34bc3c89dfedc3cd6d4a4c4c77e6c5a54f.tar.gz
application-94c21b34bc3c89dfedc3cd6d4a4c4c77e6c5a54f.tar.bz2
application-94c21b34bc3c89dfedc3cd6d4a4c4c77e6c5a54f.zip
Change-Id: I1d64d64e65abd1feb0e7c447d43f820ead252367 Signed-off-by: Inkyun Kil <inkyun.kil@samsung.com>
-rwxr-xr-xTizen.Applications.Alarm/Tizen.Applications/AlarmManager.cs14
1 files changed, 8 insertions, 6 deletions
diff --git a/Tizen.Applications.Alarm/Tizen.Applications/AlarmManager.cs b/Tizen.Applications.Alarm/Tizen.Applications/AlarmManager.cs
index 117bfbf..68fc592 100755
--- a/Tizen.Applications.Alarm/Tizen.Applications/AlarmManager.cs
+++ b/Tizen.Applications.Alarm/Tizen.Applications/AlarmManager.cs
@@ -227,7 +227,7 @@ namespace Tizen.Applications
}
/// <summary>
- /// Sets an alarm to be triggered periodically, starting at a specific time.
+ /// Sets a notification alarm to be triggered at a specific time.
/// The date describes the time of the first occurrence.
/// </summary>
/// <param name="dateTime"> The first active alarm time </param>
@@ -256,8 +256,8 @@ namespace Tizen.Applications
}
/// <summary>
- /// Sets an alarm to be triggered periodically, starting at a specific time.
- /// The date describes the time of the first occurrence.
+ /// Sets a notification alarm to be triggered after a specific time.
+ /// The alarm will first go off delay seconds later and then will go off every certain amount of time defined using period seconds.
/// </summary>
/// <param name="delay">The amount of time before the first execution (in seconds). </param>
/// <param name="period"> The amount of time between subsequent alarms (in seconds). This value does not guarantee the accuracy. </param>
@@ -285,8 +285,10 @@ namespace Tizen.Applications
}
/// <summary>
- /// Sets an alarm to be triggered periodically, starting at a specific time.
+ /// Sets a notification alarm to be triggered periodically, starting at a specific time.
/// The date describes the time of the first occurrence.
+ /// weekFlag is the repeat value of the days of the week.
+ /// If weekFlag is AlarmWeekFlag.Tuesday, the alarm will repeat every Tuesday at a specific time.
/// </summary>
/// <param name="dateTime"> The first active alarm time </param>
/// <param name="weekFlag"> The day of the week, AlarmWeekFlag may be a combination of days,
@@ -316,8 +318,8 @@ namespace Tizen.Applications
}
/// <summary>
- /// Sets an alarm to be triggered periodically, starting at a specific time.
- /// The date describes the time of the first occurrence.
+ /// Sets a notification alarm to be triggered after a specific time.
+ /// The alarm will go off delay seconds later.
/// </summary>
/// <param name="delay">The amount of time before the first execution (in seconds).</param>
/// <param name="notification"> The notification to be posted when the alarm is triggered </param>