Added API level 56/136756/1 accepted/tizen/4.0/unified/20170816.015050 accepted/tizen/unified/20170717.170520 submit/tizen/20170714.063336 submit/tizen_4.0/20170811.094300 submit/tizen_4.0/20170814.115522 submit/tizen_4.0_unified/20170814.115522
authorYounho Park <younho.park@samsung.com>
Mon, 3 Jul 2017 06:02:31 +0000 (15:02 +0900)
committerYounho Park <younho.park@samsung.com>
Mon, 3 Jul 2017 06:02:31 +0000 (15:02 +0900)
Change-Id: I21705ca03f37d704a945e2617a8774f71ef07cf0
Signed-off-by: Younho Park <younho.park@samsung.com>
Tizen.Messaging.Push/Tizen.Messaging.Push/PushClient.cs
Tizen.Messaging.Push/Tizen.Messaging.Push/PushConnectionStateEventArgs.cs
Tizen.Messaging.Push/Tizen.Messaging.Push/PushMessageEventArgs.cs
Tizen.Messaging.Push/Tizen.Messaging.Push/ServerResponse.cs

index 8df1491..af0dfcc 100644 (file)
@@ -22,6 +22,7 @@ namespace Tizen.Messaging.Push
     /// <summary>
     /// The PushClient API provides functions to connect to push service for receiving push messages.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     /// <remarks>
     /// The PushClient API provides the way to connect with the push service.
     /// It provides api's to connect/disconnect from the push service.
@@ -63,6 +64,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// Event Handler for receiving the notifications.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public static event EventHandler<PushMessageEventArgs> NotificationReceived
         {
             add
@@ -84,6 +86,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// Event Handler for receiving changes in States of the connection.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public static event EventHandler<PushConnectionStateEventArgs> StateChanged
         {
             add
@@ -105,6 +108,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// API to connect with the push service.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <param name="pushAppId"> The Push Application Id Registered with the server.</param>
         public static void PushServiceConnect(string pushAppId)
         {
@@ -114,6 +118,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// API to disconnect from the push service.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public static void PushServiceDisconnect()
         {
             PushImpl.Instance.PushServiceDisconnect();
@@ -124,6 +129,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// API to Register the application with the push server.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// The method returns a task which on completion with give a ServerResponse Object.
         /// </returns>
@@ -135,6 +141,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// API to Deregister the application from the push server.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// The method returns a task which on completion with give a ServerResponse Object.
         /// </returns>
@@ -146,6 +153,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// Gets the unread notifications for the application.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public static void GetUnreadNotifications()
         {
             PushImpl.Instance.GetUnreadNotifications();
@@ -153,6 +161,7 @@ namespace Tizen.Messaging.Push
 
         /// <summary>
         /// registration Id received from server. </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <returns>
         /// It is the string which is the Id received from the server.
         /// </returns>
index 6e78574..dcf4965 100644 (file)
@@ -21,11 +21,13 @@ namespace Tizen.Messaging.Push
     /// <summary>
     /// An extended EventArgs class which contains the State Information.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public class PushConnectionStateEventArgs : EventArgs
     {
         /// <summary>
         /// Enumeration for the different states.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public enum PushState
         {
             /// <summary>
@@ -53,6 +55,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// Gives the current state.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>
         /// It is the current state.</value>
         public PushState State
@@ -64,6 +67,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// Gives information about the error if set.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>
         /// It is the string which contains the error string if set.</value>
         public string Error
index 3a91f14..1cb283e 100644 (file)
@@ -21,10 +21,12 @@ namespace Tizen.Messaging.Push
     /// <summary>
     /// An extended EventArgs class which contains the message received.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public class PushMessageEventArgs : EventArgs
     {
         /// <summary>
         /// Gives the Application Data recieved. </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>
         /// It is the string which stores the application data.</value>
         public string AppData
@@ -36,6 +38,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// Gives the Message Received Field.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>
         /// It is the string which stores the message field.</value>
         public string Message
@@ -47,6 +50,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// Gives the time at which the Notification was received.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>
         /// It is the DateTime field representing the time at which the Notification was received.</value>
         public DateTime ReceivedAt
@@ -58,6 +62,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// Gives the Sender of the notification.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>
         /// It is a string value representing the Sender of the Notification.</value>
         public string Sender
@@ -69,6 +74,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// Gives the session ID of the notification.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>
         /// It is a string value representing the session ID of the Notification.</value>
         public string SessionInfo
@@ -80,6 +86,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// Gives the request Id of the notification.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>
         /// It is a string value representing the request Id of the Notification.</value>
         public string RequestId
@@ -91,6 +98,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// Gives the value in the type field of the notification.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>
         /// It is an integer value representing the type field of the notification.</value>
         public int Type
index d2e2a56..e0d895b 100644 (file)
@@ -19,11 +19,13 @@ namespace Tizen.Messaging.Push
     /// <summary>
     /// The ServerResponse structure provides the result and the server response if any.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public struct ServerResponse
     {
         /// <summary>
         /// Enumeration for the Result from the server.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public enum Result
         {
             /// <summary>
@@ -47,6 +49,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// Gives the Result of the opeartion.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>
         /// It is the Result state of the operation performed.</value>
         public Result ServerResult
@@ -58,6 +61,7 @@ namespace Tizen.Messaging.Push
         /// <summary>
         /// Gives the Message from the server.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         /// <value>
         /// It is the Message sent by the server.</value>
         public string ServerMessage