From 6cc44f2f391a1591964d184f198b7ca41e3d554e Mon Sep 17 00:00:00 2001 From: Younho Park Date: Mon, 3 Jul 2017 15:02:31 +0900 Subject: [PATCH] Added API level Change-Id: I21705ca03f37d704a945e2617a8774f71ef07cf0 Signed-off-by: Younho Park --- Tizen.Messaging.Push/Tizen.Messaging.Push/PushClient.cs | 9 +++++++++ .../Tizen.Messaging.Push/PushConnectionStateEventArgs.cs | 4 ++++ .../Tizen.Messaging.Push/PushMessageEventArgs.cs | 8 ++++++++ Tizen.Messaging.Push/Tizen.Messaging.Push/ServerResponse.cs | 4 ++++ 4 files changed, 25 insertions(+) diff --git a/Tizen.Messaging.Push/Tizen.Messaging.Push/PushClient.cs b/Tizen.Messaging.Push/Tizen.Messaging.Push/PushClient.cs index 8df1491..af0dfcc 100644 --- a/Tizen.Messaging.Push/Tizen.Messaging.Push/PushClient.cs +++ b/Tizen.Messaging.Push/Tizen.Messaging.Push/PushClient.cs @@ -22,6 +22,7 @@ namespace Tizen.Messaging.Push /// /// The PushClient API provides functions to connect to push service for receiving push messages. /// + /// 3 /// /// 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 /// /// Event Handler for receiving the notifications. /// + /// 3 public static event EventHandler NotificationReceived { add @@ -84,6 +86,7 @@ namespace Tizen.Messaging.Push /// /// Event Handler for receiving changes in States of the connection. /// + /// 3 public static event EventHandler StateChanged { add @@ -105,6 +108,7 @@ namespace Tizen.Messaging.Push /// /// API to connect with the push service. /// + /// 3 /// The Push Application Id Registered with the server. public static void PushServiceConnect(string pushAppId) { @@ -114,6 +118,7 @@ namespace Tizen.Messaging.Push /// /// API to disconnect from the push service. /// + /// 3 public static void PushServiceDisconnect() { PushImpl.Instance.PushServiceDisconnect(); @@ -124,6 +129,7 @@ namespace Tizen.Messaging.Push /// /// API to Register the application with the push server. /// + /// 3 /// /// The method returns a task which on completion with give a ServerResponse Object. /// @@ -135,6 +141,7 @@ namespace Tizen.Messaging.Push /// /// API to Deregister the application from the push server. /// + /// 3 /// /// The method returns a task which on completion with give a ServerResponse Object. /// @@ -146,6 +153,7 @@ namespace Tizen.Messaging.Push /// /// Gets the unread notifications for the application. /// + /// 3 public static void GetUnreadNotifications() { PushImpl.Instance.GetUnreadNotifications(); @@ -153,6 +161,7 @@ namespace Tizen.Messaging.Push /// /// registration Id received from server. + /// 3 /// /// It is the string which is the Id received from the server. /// diff --git a/Tizen.Messaging.Push/Tizen.Messaging.Push/PushConnectionStateEventArgs.cs b/Tizen.Messaging.Push/Tizen.Messaging.Push/PushConnectionStateEventArgs.cs index 6e78574..dcf4965 100644 --- a/Tizen.Messaging.Push/Tizen.Messaging.Push/PushConnectionStateEventArgs.cs +++ b/Tizen.Messaging.Push/Tizen.Messaging.Push/PushConnectionStateEventArgs.cs @@ -21,11 +21,13 @@ namespace Tizen.Messaging.Push /// /// An extended EventArgs class which contains the State Information. /// + /// 3 public class PushConnectionStateEventArgs : EventArgs { /// /// Enumeration for the different states. /// + /// 3 public enum PushState { /// @@ -53,6 +55,7 @@ namespace Tizen.Messaging.Push /// /// Gives the current state. /// + /// 3 /// /// It is the current state. public PushState State @@ -64,6 +67,7 @@ namespace Tizen.Messaging.Push /// /// Gives information about the error if set. /// + /// 3 /// /// It is the string which contains the error string if set. public string Error diff --git a/Tizen.Messaging.Push/Tizen.Messaging.Push/PushMessageEventArgs.cs b/Tizen.Messaging.Push/Tizen.Messaging.Push/PushMessageEventArgs.cs index 3a91f14..1cb283e 100644 --- a/Tizen.Messaging.Push/Tizen.Messaging.Push/PushMessageEventArgs.cs +++ b/Tizen.Messaging.Push/Tizen.Messaging.Push/PushMessageEventArgs.cs @@ -21,10 +21,12 @@ namespace Tizen.Messaging.Push /// /// An extended EventArgs class which contains the message received. /// + /// 3 public class PushMessageEventArgs : EventArgs { /// /// Gives the Application Data recieved. + /// 3 /// /// It is the string which stores the application data. public string AppData @@ -36,6 +38,7 @@ namespace Tizen.Messaging.Push /// /// Gives the Message Received Field. /// + /// 3 /// /// It is the string which stores the message field. public string Message @@ -47,6 +50,7 @@ namespace Tizen.Messaging.Push /// /// Gives the time at which the Notification was received. /// + /// 3 /// /// It is the DateTime field representing the time at which the Notification was received. public DateTime ReceivedAt @@ -58,6 +62,7 @@ namespace Tizen.Messaging.Push /// /// Gives the Sender of the notification. /// + /// 3 /// /// It is a string value representing the Sender of the Notification. public string Sender @@ -69,6 +74,7 @@ namespace Tizen.Messaging.Push /// /// Gives the session ID of the notification. /// + /// 3 /// /// It is a string value representing the session ID of the Notification. public string SessionInfo @@ -80,6 +86,7 @@ namespace Tizen.Messaging.Push /// /// Gives the request Id of the notification. /// + /// 3 /// /// It is a string value representing the request Id of the Notification. public string RequestId @@ -91,6 +98,7 @@ namespace Tizen.Messaging.Push /// /// Gives the value in the type field of the notification. /// + /// 3 /// /// It is an integer value representing the type field of the notification. public int Type diff --git a/Tizen.Messaging.Push/Tizen.Messaging.Push/ServerResponse.cs b/Tizen.Messaging.Push/Tizen.Messaging.Push/ServerResponse.cs index d2e2a56..e0d895b 100644 --- a/Tizen.Messaging.Push/Tizen.Messaging.Push/ServerResponse.cs +++ b/Tizen.Messaging.Push/Tizen.Messaging.Push/ServerResponse.cs @@ -19,11 +19,13 @@ namespace Tizen.Messaging.Push /// /// The ServerResponse structure provides the result and the server response if any. /// + /// 3 public struct ServerResponse { /// /// Enumeration for the Result from the server. /// + /// 3 public enum Result { /// @@ -47,6 +49,7 @@ namespace Tizen.Messaging.Push /// /// Gives the Result of the opeartion. /// + /// 3 /// /// It is the Result state of the operation performed. public Result ServerResult @@ -58,6 +61,7 @@ namespace Tizen.Messaging.Push /// /// Gives the Message from the server. /// + /// 3 /// /// It is the Message sent by the server. public string ServerMessage -- 2.7.4