summaryrefslogtreecommitdiff
path: root/Tizen.Applications.NotificationEventListener
diff options
context:
space:
mode:
authorEditor Lionbridge <TizenEditor.SEL@lionbridge.com>2017-07-28 14:38:15 +0530
committerSemun Lee <semun.lee@samsung.com>2017-08-17 14:23:02 +0900
commit282065b56965a51b79160b546f482b383753fb7b (patch)
tree8ba614502fb392199d064aa9fbc0609c993a1ffb /Tizen.Applications.NotificationEventListener
parent25383beb0548289fc26f364faf5e50241b7094bc (diff)
downloadapplication-282065b56965a51b79160b546f482b383753fb7b.tar.gz
application-282065b56965a51b79160b546f482b383753fb7b.tar.bz2
application-282065b56965a51b79160b546f482b383753fb7b.zip
Review application API cs file
PS2: Rebase PS3: Revert to PS1 PS4: Further edits Change-Id: If7ebd70128f6beb8673e9e5196170f219f953034
Diffstat (limited to 'Tizen.Applications.NotificationEventListener')
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs2
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs40
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsAccessory.cs12
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsActiveStyle.cs12
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsButtonAction.cs8
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsEnumerations.cs164
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsIndicatorStyle.cs8
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsLockStyle.cs8
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsProgress.cs4
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsReplyAction.cs8
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsStyle.cs2
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationListenerManager.cs26
12 files changed, 147 insertions, 147 deletions
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs
index 5d05883..0f26d6c 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationDeleteEventArgs.cs
@@ -23,7 +23,7 @@ namespace Tizen.Applications.NotificationEventListener
public class NotificationDeleteEventArgs : EventArgs
{
/// <summary>
- /// Gets the unique number of the Notification.
+ /// Gets the unique number of the notification.
/// </summary>
public int UniqueNumber { get; internal set; }
}
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs
index ba2ed0d..140ab96 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgs.cs
@@ -41,55 +41,55 @@ namespace Tizen.Applications.NotificationEventListener
}
/// <summary>
- /// Gets the unique id of Notification.
+ /// Gets the unique ID of the notification.
/// </summary>
public int UniqueNumber { get; internal set; }
/// <summary>
- /// Gets the appId of Notification.
+ /// Gets the appId of the notification.
/// </summary>
public string AppID { get; internal set; }
/// <summary>
- /// Gets the title of Notification.
+ /// Gets the title of the notification.
/// </summary>
public string Title { get; internal set; }
/// <summary>
- /// Gets the content text of Notification.
+ /// Gets the content text of the notification.
/// </summary>
public string Content { get; internal set; }
/// <summary>
- /// Gets the icon's path of Notification.
+ /// Gets the icon's path of the notification.
/// </summary>
public string Icon { get; internal set; }
/// <summary>
- /// Gets the sub icon path of Notification.
+ /// Gets the sub icon path of the notification.
/// </summary>
public string SubIcon { get; internal set; }
/// <summary>
- /// Gets the Timestamp of notification is visible or not.
+ /// Gets the timestamp if the notification is visible or not.
/// </summary>
public bool IsTimeStampVisible { get; internal set; }
/// <summary>
- /// Gets TimeStamp of Notification.
+ /// Gets TimeStamp of notification.
/// </summary>
/// <remarks>
- /// If IsTimeStampVisible property is set false, this TimeStamp property is meanless.
+ /// If IsTimeStampVisible property is set false, this TimeStamp property is meaningless.
/// </remarks>
public DateTime TimeStamp { get; internal set; }
/// <summary>
- /// Gets the count which is displayed at the right side of notification.
+ /// Gets the count, which is displayed at the right side of notification.
/// </summary>
public int Count { get; internal set; }
/// <summary>
- /// Gets the Tag of notification.
+ /// Gets the tag of notification.
/// </summary>
public string Tag { get; internal set; }
@@ -98,7 +98,7 @@ namespace Tizen.Applications.NotificationEventListener
/// <summary>
/// Gets a value that determines whether notification is displayed on the default viewer.
- /// If IsDisplay property set false and add style, you can see only style notification.
+ /// If IsDisplay property is set as false and add style, you can see only style notification.
/// </summary>
public bool IsVisible { get; internal set; } = true;
@@ -106,7 +106,7 @@ namespace Tizen.Applications.NotificationEventListener
public bool HasEventFlag { get; internal set; } = false;
/// <summary>
- /// Gets the AppControl which is invoked when notification is clicked.
+ /// Gets the AppControl, which is invoked when notification is clicked.
/// </summary>
public AppControl Action { get; internal set; }
@@ -116,7 +116,7 @@ namespace Tizen.Applications.NotificationEventListener
public ProgressArgs Progress { get; internal set; }
/// <summary>
- /// Gets the AccessoryArgs which has option of Sound, Vibration, LED.
+ /// Gets the AccessoryArgs, which has option of sound, vibration, and LED.
/// </summary>
public AccessoryArgs Accessory { get; internal set; }
@@ -137,11 +137,11 @@ namespace Tizen.Applications.NotificationEventListener
public NotificationProperty Property { get; internal set; }
/// <summary>
- /// Gets the styleArgs of active, lock, indicator, bigpicture.
+ /// Gets the styleArgs of active, lock, indicator, and bigpicture.
/// </summary>
- /// <typeparam name="T">Type of notification style to be queried</typeparam>
- /// <returns>The NotificationEventListener.StyleArgs object associated with the given style</returns>
- /// <exception cref="ArgumentException">Thrown when argument is invalid</exception>
+ /// <typeparam name="T">Type of notification style to be queried.</typeparam>
+ /// <returns>The NotificationEventListener.StyleArgs object associated with the given style.</returns>
+ /// <exception cref="ArgumentException">Thrown when an argument is invalid.</exception>
public T GetStyle<T>() where T : StyleArgs, new()
{
T type = new T();
@@ -163,8 +163,8 @@ namespace Tizen.Applications.NotificationEventListener
/// <summary>
/// Gets the ExtraDataArgs.
/// </summary>
- /// <param name="key">The key that specifies which extra data</param>
- /// <returns>Returns the bundle for key</returns>
+ /// <param name="key">The key that specifies which extra data.</param>
+ /// <returns>Returns the bundle for key.</returns>
public Bundle GetExtraData(string key)
{
Bundle bundle;
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsAccessory.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsAccessory.cs
index b09398c..75c1d97 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsAccessory.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsAccessory.cs
@@ -19,12 +19,12 @@ namespace Tizen.Applications.NotificationEventListener
using Tizen.Common;
/// <summary>
- /// This class provides the methods and properties to get information about the posted or updated notification.
+ /// This class provides methods and properties to get information about the posted or updated notification.
/// </summary>
public partial class NotificationEventArgs
{
/// <summary>
- /// Class to get infomation about Notification accessory.
+ /// Class to get infomation about notification accessory.
/// </summary>
public class AccessoryArgs
{
@@ -44,12 +44,12 @@ namespace Tizen.Applications.NotificationEventListener
public bool CanVibrate { get; internal set; }
/// <summary>
- /// Gets the led option.
+ /// Gets the LED option.
/// </summary>
public AccessoryOption LedOption { get; internal set; }
/// <summary>
- /// Gets led on time period that you would like the LED on the device to blink. as well as the rate.
+ /// Gets LED on time period that you would like the LED on the device to blink as well as the rate.
/// </summary>
/// <value>
/// Default value of LedOnMilliseconds is 0.
@@ -58,7 +58,7 @@ namespace Tizen.Applications.NotificationEventListener
public int LedOnMillisecond { get; internal set; }
/// <summary>
- /// Gets led on time period that you would like the LED on the device to blink. as well as the rate.
+ /// Gets LED on time period that you would like the LED on the device to blink as well as the rate.
/// </summary>
/// <value>
/// Default value of LedOffMillisecond is 0.
@@ -67,7 +67,7 @@ namespace Tizen.Applications.NotificationEventListener
public int LedOffMillisecond { get; internal set; }
/// <summary>
- /// Gets led color that you would like the LED on the device to blink.
+ /// Gets LED color that you would like the LED on the device to blink.
/// </summary>
public Color LedColor { get; internal set; }
}
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsActiveStyle.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsActiveStyle.cs
index d3aecc6..1618826 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsActiveStyle.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsActiveStyle.cs
@@ -19,12 +19,12 @@ namespace Tizen.Applications.NotificationEventListener
using System.Collections.Generic;
/// <summary>
- /// This class provides the methods and properties to get information about the posted or updated notification.
+ /// This class provides methods and properties to get information about the posted or updated notification.
/// </summary>
public partial class NotificationEventArgs
{
/// <summary>
- /// Class to get infomation about Notification Active style.
+ /// Class to get infomation about notification active style.
/// </summary>
public class ActiveStyleArgs : StyleArgs
{
@@ -42,7 +42,7 @@ namespace Tizen.Applications.NotificationEventListener
/// </summary>
/// <value>
/// When 'IsAutoRemove' is set as false, the active notification will not be removed as long as the user removes
- /// the active notification or the app which posted the active notification removes the active notification.
+ /// the active notification, or the app which posted the active notification removes the active notification.
/// </value>
public bool IsAutoRemove { get; internal set; }
@@ -52,17 +52,17 @@ namespace Tizen.Applications.NotificationEventListener
public string BackgroundImage { get; internal set; }
/// <summary>
- /// Gets the default button to display highlight on the active notification
+ /// Gets the default button to display highlight on the active notification.
/// </summary>
public ButtonIndex DefaultButton { get; internal set; }
/// <summary>
- /// Gets timeout value in second when the notification can be hidden from the viewer.
+ /// Gets timeout value in seconds when the notification can be hidden from the viewer.
/// </summary>
public int HideTimeout { get; internal set; }
/// <summary>
- /// Gets timeout value in second when the notification can be deleted from the viewer.
+ /// Gets timeout value in seconds when the notification can be deleted from the viewer.
/// </summary>
public int DeleteTimeout { get; internal set; }
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsButtonAction.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsButtonAction.cs
index 2e39158..bbc5289 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsButtonAction.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsButtonAction.cs
@@ -17,17 +17,17 @@
namespace Tizen.Applications.NotificationEventListener
{
/// <summary>
- /// This class provides the methods and properties to get information about the posted or updated notification.
+ /// This class provides methods and properties to get information about the posted or updated notification.
/// </summary>
public partial class NotificationEventArgs
{
/// <summary>
- /// Class to get infomation about Notification ButtonAction.
+ /// Class to get infomation about notification ButtonAction.
/// </summary>
public class ButtonActionArgs
{
/// <summary>
- /// Gets the Index of the Button which is appeared at Notification.
+ /// Gets the index of the button, which appears at notification.
/// </summary>
public ButtonIndex Index { get; internal set; }
@@ -37,7 +37,7 @@ namespace Tizen.Applications.NotificationEventListener
public string Text { get; internal set; }
/// <summary>
- /// Gets the image's path that represent the button.
+ /// Gets the image's path that represents the button.
/// </summary>
public string ImagePath { get; internal set; }
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsEnumerations.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsEnumerations.cs
index 8adcf93..134479f 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsEnumerations.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsEnumerations.cs
@@ -20,101 +20,101 @@ namespace Tizen.Applications.NotificationEventListener
using System.ComponentModel;
/// <summary>
- /// Enumeration for Progress category
+ /// Enumeration for the progress category.
/// </summary>
public enum ProgressCategory
{
/// <summary>
- /// Value for percent type
+ /// Value for the percent type.
/// </summary>
Percent,
/// <summary>
- /// Value for time type
+ /// Value for the time type.
/// </summary>
Time,
/// <summary>
- /// Value for pending type which is not updated progress current value
+ /// Value for the pending type, which is not the updated progress current value.
/// </summary>
PendingBar
}
/// <summary>
- /// Enumeration for Accessory option
+ /// Enumeration for the accessory option.
/// </summary>
public enum AccessoryOption
{
/// <summary>
- /// Value for off accessory option
+ /// Value for off accessory option.
/// </summary>
Off = -1,
/// <summary>
- /// Value for on accessory option
+ /// Value for on accessory option.
/// </summary>
On,
/// <summary>
- /// Value for custom accessory option
+ /// Value for the custom accessory option.
/// </summary>
Custom
}
/// <summary>
- /// Enumeration for Button Index
+ /// Enumeration for the button index.
/// </summary>
public enum ButtonIndex
{
/// <summary>
- /// Value for default button index
+ /// Value for the default button index.
/// </summary>
None = -1,
/// <summary>
- /// Value for first button index
+ /// Value for the first button index.
/// </summary>
First,
/// <summary>
- /// Value for second button index
+ /// Value for the second button index.
/// </summary>
Second,
/// <summary>
- /// Value for third button index
+ /// Value for the third button index.
/// </summary>
Third
}
/// <summary>
- /// Enumeration for notification particular property
+ /// Enumeration for the notification particular property.
/// </summary>
[Flags]
public enum NotificationProperty
{
/// <summary>
- /// Value for adjust nothing
+ /// Value for the adjust nothing.
/// </summary>
None = 0x00,
/// <summary>
- /// Value for display only SIM card inserted
+ /// Value for display only when SIM card inserted.
/// </summary>
DisplayOnlySimMode = 0x01,
/// <summary>
- /// Value for disable application launch when it selected
+ /// Value for disable application launch when it is selected.
/// </summary>
DisableAppLaunch = 0x02,
/// <summary>
- /// Value for disable auto delete when it selected
+ /// Value for disable auto delete when it is selected.
/// </summary>
DisableAutoDelete = 0x04,
/// <summary>
- /// Value for deleted when device is rebooted even though notification is not set OngoingType
+ /// Value for deleted when device is rebooted even though notification is not set OngoingType.
/// </summary>
VolatileDisplay = 0x100,
}
@@ -126,47 +126,47 @@ namespace Tizen.Applications.NotificationEventListener
public enum UserEventType
{
/// <summary>
- /// Event type : Click on button 1
+ /// Event type : Click on button 1.
/// </summary>
ClickOnButton1 = 0,
/// <summary>
- /// Event type : Click on button 2
+ /// Event type : Click on button 2.
/// </summary>
ClickOnButton2,
/// <summary>
- /// Event type : Click on button 3
+ /// Event type : Click on button 3.
/// </summary>
ClickOnButton3,
/// <summary>
- /// Event type : Click on text_input button
+ /// Event type : Click on text_input button.
/// </summary>
ClickOnReplyButton = 8,
/// <summary>
- /// Event type : Hidden by user
+ /// Event type : Hidden by user.
/// </summary>
HiddenByUser = 100,
/// <summary>
- /// Event type : Deleted by timer
+ /// Event type : Deleted by timer.
/// </summary>
HiddenByTimeout = 101,
/// <summary>
- /// Event type : Deleted by timer
+ /// Event type : Deleted by timer.
/// </summary>
HiddenByExternal = 102,
/// <summary>
- /// Event type : Clicked by user
+ /// Event type : Clicked by user.
/// </summary>
ClickOnNotification = 200,
/// <summary>
- /// Event type : Deleted by user
+ /// Event type : Deleted by user.
/// </summary>
DeleteNotification = 201,
}
@@ -177,12 +177,12 @@ namespace Tizen.Applications.NotificationEventListener
internal enum NotificationType
{
/// <summary>
- /// Notification type
+ /// Notification type.
/// </summary>
Notification = 0,
/// <summary>
- /// Ongoing type
+ /// Ongoing type.
/// </summary>
Ongoing,
}
@@ -193,123 +193,123 @@ namespace Tizen.Applications.NotificationEventListener
internal enum NotificationText
{
/// <summary>
- /// Title
+ /// Title.
/// </summary>
Title = 0,
/// <summary>
- /// Content
+ /// Content.
/// </summary>
Content,
/// <summary>
- /// Text to display event count
+ /// Text to display the event count.
/// </summary>
EventCount = 3,
/// <summary>
- /// Box contents 1
+ /// Box contents 1.
/// </summary>
FirstMainText,
/// <summary>
- /// Box contents 1-1
+ /// Box contents 1-1.
/// </summary>
FirstSubText,
/// <summary>
- /// Box contents 2
+ /// Box contents 2.
/// </summary>
SecondMainText,
/// <summary>
- /// Box contents 2-1
+ /// Box contents 2-1.
/// </summary>
SecondSubText,
/// <summary>
- /// Text on button 1
+ /// Text on button 1.
/// </summary>
FirstButton = 13,
/// <summary>
- /// Text on button 2
+ /// Text on button 2.
/// </summary>
SecondButton,
/// <summary>
- /// Text on button 3
+ /// Text on button 3.
/// </summary>
ThirdButton,
/// <summary>
- /// Guide text on the message reply box
+ /// Guide text on the message reply box.
/// </summary>
PlaceHolder = 19,
/// <summary>
- /// Text on button the on message reply box
+ /// Text on button on the message reply box.
/// </summary>
InputButton = 20,
}
/// <summary>
- /// Enumeration for image type.
+ /// Enumeration for the image type.
/// </summary>
internal enum NotificationImage
{
/// <summary>
- /// Icon
+ /// Icon.
/// </summary>
Icon = 0,
/// <summary>
- /// Indicator icon
+ /// Indicator icon.
/// </summary>
Indicator,
/// <summary>
- /// Lock screen icon
+ /// Lock screen icon.
/// </summary>
Lockscreen,
/// <summary>
- /// Thumbnail
+ /// Thumbnail.
/// </summary>
Thumbnail,
/// <summary>
- /// Lock screen thumbnail
+ /// Lock screen thumbnail.
/// </summary>
ThumbnailLockscreen,
/// <summary>
- /// Icon
+ /// Icon.
/// </summary>
SubIcon,
/// <summary>
- /// image displayed on background
+ /// Image displayed on background.
/// </summary>
Background,
/// <summary>
- /// Image for button 1
+ /// Image for button 1.
/// </summary>
Button_1 = 12,
/// <summary>
- /// Image for button 2
+ /// Image for button 2.
/// </summary>
Button_2,
/// <summary>
- /// Image for button 3
+ /// Image for button 3.
/// </summary>
Button_3,
/// <summary>
- /// Image for message reply
+ /// Image for message reply.
/// </summary>
TextInputButton = 18,
}
@@ -320,27 +320,27 @@ namespace Tizen.Applications.NotificationEventListener
internal enum NotificationLayout
{
/// <summary>
- /// Default
+ /// Default.
/// </summary>
None = 0,
/// <summary>
- /// Layout for notification. Used to inform single event
+ /// Layout for notification. Used to inform single event.
/// </summary>
SingleEvent = 1,
/// <summary>
- /// Layout for notification. Used to display images
+ /// Layout for notification. Used to display images.
/// </summary>
Thumbnail = 3,
/// <summary>
- /// Layout for ongoing notification. Used to display text message
+ /// Layout for ongoing notification. Used to display text message.
/// </summary>
OngoingEvent = 4,
/// <summary>
- /// Layout for ongoing notification. Used to display progress
+ /// Layout for ongoing notification. Used to display progress.
/// </summary>
OngoingProgress = 5,
}
@@ -351,7 +351,7 @@ namespace Tizen.Applications.NotificationEventListener
internal enum LaunchOption
{
/// <summary>
- /// Launching with app control
+ /// Launching with application control.
/// </summary>
AppControl = 1
}
@@ -362,32 +362,32 @@ namespace Tizen.Applications.NotificationEventListener
internal enum NotificationOperationDataType
{
/// <summary>
- /// Default
+ /// Default.
/// </summary>
Min = 0,
/// <summary>
- /// Operation type
+ /// Operation type.
/// </summary>
Type,
/// <summary>
- /// Private ID
+ /// Private ID.
/// </summary>
UniqueNumber,
/// <summary>
- /// Notification handler
+ /// Notification handler.
/// </summary>
Notification,
/// <summary>
- /// Reserved
+ /// Reserved.
/// </summary>
ExtraInformation1,
/// <summary>
- /// Reserved
+ /// Reserved.
/// </summary>
ExtraInformation2,
}
@@ -398,22 +398,22 @@ namespace Tizen.Applications.NotificationEventListener
internal enum NotificationOperationType
{
/// <summary>
- /// Default
+ /// Default.
/// </summary>
None = 0,
/// <summary>
- /// Notification inserted
+ /// Notification inserted.
/// </summary>
Insert,
/// <summary>
- /// Notification updated
+ /// Notification updated.
/// </summary>
Update,
/// <summary>
- /// Notification deleted
+ /// Notification deleted.
/// </summary>
Delete,
}
@@ -424,32 +424,32 @@ namespace Tizen.Applications.NotificationEventListener
internal enum ClickEventType
{
/// <summary>
- /// Event type : Click on button 1
+ /// Event type : Click on button 1.
/// </summary>
FirstButton = 0,
/// <summary>
- /// Event type : Click on button 2
+ /// Event type : Click on button 2.
/// </summary>
SecondButton = 1,
/// <summary>
- /// Event type : Click on button 3
+ /// Event type : Click on button 3.
/// </summary>
ThirdButton = 2,
/// <summary>
- /// Event type : Click on icon
+ /// Event type : Click on icon.
/// </summary>
Icon = 6,
/// <summary>
- /// Event type : Click on thumbnail
+ /// Event type : Click on thumbnail.
/// </summary>
Thumbnail = 7,
/// <summary>
- /// Event type : Click on text_input button
+ /// Event type : Click on text_input button.
/// </summary>
InputButton = 8,
}
@@ -461,32 +461,32 @@ namespace Tizen.Applications.NotificationEventListener
internal enum NotificationDisplayApplist
{
/// <summary>
- /// Notification Tray(Quickpanel)
+ /// Notification Tray(Quickpanel).
/// </summary>
Tray = 0x00000001,
/// <summary>
- /// Ticker notification
+ /// Ticker notification.
/// </summary>
Ticker = 0x00000002,
/// <summary>
- /// Lock screen
+ /// Lock screen.
/// </summary>
Lock = 0x00000004,
/// <summary>
- /// Indicator
+ /// Indicator.
/// </summary>
Indicator = 0x00000008,
/// <summary>
- /// Active notification
+ /// Active notification.
/// </summary>
Active = 0x00000010,
/// <summary>
- /// All display application except active notification
+ /// All display application except active notification.
/// </summary>
All = 0x0000000f,
}
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsIndicatorStyle.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsIndicatorStyle.cs
index bc04cf1..32ad1f5 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsIndicatorStyle.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsIndicatorStyle.cs
@@ -17,22 +17,22 @@
namespace Tizen.Applications.NotificationEventListener
{
/// <summary>
- /// This class provides the methods and properties to get information about the posted or updated notification.
+ /// This class provides methods and properties to get information about the posted or updated notification.
/// </summary>
public partial class NotificationEventArgs
{
/// <summary>
- /// Class to generate the Indicator style notification.
+ /// Class to generate the indicator style notification.
/// </summary>
public class IndicatorStyleArgs : StyleArgs
{
/// <summary>
- /// Gets the path of the image file to display on the icon of Indicator style.
+ /// Gets the path of the image file to display on the icon of indicator style.
/// </summary>
public string IconPath { get; internal set; }
/// <summary>
- /// Gets the sub text to display Indicator style.
+ /// Gets the sub text to display indicator style.
/// </summary>
public string SubText { get; internal set; }
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsLockStyle.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsLockStyle.cs
index 62ca496..3a24f18 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsLockStyle.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsLockStyle.cs
@@ -17,22 +17,22 @@
namespace Tizen.Applications.NotificationEventListener
{
/// <summary>
- /// This class provides the methods and properties to get information about the posted or updated notification.
+ /// This class provides methods and properties to get information about the posted or updated notification.
/// </summary>
public partial class NotificationEventArgs
{
/// <summary>
- /// Class to get infomation about Notification Lock style.
+ /// Class to get infomation about notification lock style.
/// </summary>
public class LockStyleArgs : StyleArgs
{
/// <summary>
- /// Gets the path of the image file to display on the icon of Lock style.
+ /// Gets the path of the image file to display on the icon of lock style.
/// </summary>
public string IconPath { get; internal set; }
/// <summary>
- /// Gets the path of the thumbnail image file to display on the icon of Lock style.
+ /// Gets the path of the thumbnail image file to display on the icon of lock style.
/// </summary>
public string Thumbnail { get; internal set; }
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsProgress.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsProgress.cs
index ed01380..069d4e8 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsProgress.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsProgress.cs
@@ -17,12 +17,12 @@
namespace Tizen.Applications.NotificationEventListener
{
/// <summary>
- /// This class provides the methods and properties to get information about the posted or updated notification.
+ /// This class provides methods and properties to get information about the posted or updated notification.
/// </summary>
public partial class NotificationEventArgs
{
/// <summary>
- /// Class to get infomation about Progress Notification.
+ /// Class to get infomation about progress notification.
/// </summary>
public class ProgressArgs
{
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsReplyAction.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsReplyAction.cs
index d96ebf0..426f496 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsReplyAction.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsReplyAction.cs
@@ -17,23 +17,23 @@
namespace Tizen.Applications.NotificationEventListener
{
/// <summary>
- /// This class provides the methods and properties to get information about the posted or updated notification.
+ /// This class provides methods and properties to get information about the posted or updated notification.
/// </summary>
public partial class NotificationEventArgs
{
/// <summary>
- /// Class to get infomation about Notification ReplyAction.
+ /// Class to get infomation about notification ReplyAction.
/// </summary>
public class ReplyActionArgs
{
/// <summary>
- /// Gets Index of Button which is appeared at Notification.
+ /// Gets index of button, which appears at notification.
/// If there is no ParentIndex, the ReplyAction should be displayed directly on the active notification.
/// </summary>
public ButtonIndex ParentIndex { get; internal set; } = ButtonIndex.None;
/// <summary>
- /// Gets the PlaceHolderText of ReplyAction which is appeared at Notification.
+ /// Gets the PlaceHolderText of ReplyAction, which appears at notification.
/// It will be displayed to the text input box on the active notification.
/// </summary>
public string PlaceHolderText { get; internal set; }
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsStyle.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsStyle.cs
index 5ba07c7..69af7d2 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsStyle.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsStyle.cs
@@ -17,7 +17,7 @@
namespace Tizen.Applications.NotificationEventListener
{
/// <summary>
- /// This class provides the methods and properties to get information about the posted or updated notification.
+ /// This class provides methods and properties to get information about the posted or updated notification.
/// </summary>
public partial class NotificationEventArgs
{
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationListenerManager.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationListenerManager.cs
index b1baf13..4d6f582 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationListenerManager.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationListenerManager.cs
@@ -25,7 +25,7 @@ namespace Tizen.Applications.NotificationEventListener
/// This class provides a way to register callback function for some notification events.
/// </summary>
/// <remarks>
- /// The event listener can use this class to get a list of notification or to clear notifications.
+ /// The event listener can use this class to get a list of notifications or to clear notifications.
/// </remarks>
public partial class NotificationListenerManager
{
@@ -63,8 +63,8 @@ namespace Tizen.Applications.NotificationEventListener
/// <summary>
/// Event handler for notification insert event.
/// </summary>
- /// <exception cref="ArgumentException">Thrown in case of Invalid parameter.</exception>
- /// <exception cref="UnauthorizedAccessException"> Thrown in case of Permission deny.</exception>
+ /// <exception cref="ArgumentException">Thrown in case of an invalid parameter.</exception>
+ /// <exception cref="UnauthorizedAccessException"> Thrown in case of a permission is denied.</exception>
/// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
/// <privilege>http://tizen.org/privilege/notification</privilege>
public static event EventHandler<NotificationEventArgs> Added
@@ -109,8 +109,8 @@ namespace Tizen.Applications.NotificationEventListener
/// <summary>
/// Event handler for notification update event.
/// </summary>
- /// <exception cref="ArgumentException">Thrown in case of Invalid parameter.</exception>
- /// <exception cref="UnauthorizedAccessException"> Thrown in case of Permission deny.</exception>
+ /// <exception cref="ArgumentException">Thrown in case of an invalid parameter.</exception>
+ /// <exception cref="UnauthorizedAccessException"> Thrown in case of a permission is denied.</exception>
/// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
/// <privilege>http://tizen.org/privilege/notification</privilege>
public static event EventHandler<NotificationEventArgs> Updated
@@ -155,8 +155,8 @@ namespace Tizen.Applications.NotificationEventListener
/// <summary>
/// Event handler for notification delete event.
/// </summary>
- /// <exception cref="ArgumentException">Thrown in case of Invalid parameter.</exception>
- /// <exception cref="UnauthorizedAccessException"> Thrown in case of Permission deny.</exception>
+ /// <exception cref="ArgumentException">Thrown in case of an invalid parameter.</exception>
+ /// <exception cref="UnauthorizedAccessException"> Thrown in case of a permission is denied.</exception>
/// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
/// <privilege>http://tizen.org/privilege/notification</privilege>
public static event EventHandler<NotificationDeleteEventArgs> Deleted
@@ -286,12 +286,12 @@ namespace Tizen.Applications.NotificationEventListener
}
/// <summary>
- /// Deletes a Notification with appId and uniqueNumber.
+ /// Deletes a notification with appId and uniqueNumber.
/// </summary>
/// <param name="appId">The name of the application you want to delete.</param>
/// <param name="uniqueNumber">The unique number of the notification.</param>
- /// <exception cref="ArgumentException">Thrown in case of Invalid parameter.</exception>
- /// <exception cref="UnauthorizedAccessException"> Thrown in case of Permission deny.</exception>
+ /// <exception cref="ArgumentException">Thrown in case of an invalid parameter.</exception>
+ /// <exception cref="UnauthorizedAccessException"> Thrown in case of a permission is denied.</exception>
/// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
/// <privilege>http://tizen.org/privilege/notification</privilege>
public static void Delete(string appId, int uniqueNumber)
@@ -311,9 +311,9 @@ namespace Tizen.Applications.NotificationEventListener
}
/// <summary>
- /// Deletes all Notification.
+ /// Deletes all notifications.
/// </summary>
- /// <exception cref="UnauthorizedAccessException"> Thrown in case of Permission deny.</exception>
+ /// <exception cref="UnauthorizedAccessException"> Thrown in case of a permission is denied.</exception>
/// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
/// <privilege>http://tizen.org/privilege/notification</privilege>
public static void DeleteAll()
@@ -336,7 +336,7 @@ namespace Tizen.Applications.NotificationEventListener
/// <summary>
/// Returns the notification list.
/// </summary>
- /// <exception cref="UnauthorizedAccessException"> Thrown in case of Permission deny.</exception>
+ /// <exception cref="UnauthorizedAccessException"> Thrown in case of a permission is denied.</exception>
/// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
/// <privilege>http://tizen.org/privilege/notification</privilege>
public static IList<NotificationEventArgs> GetList()