Review Push API cs files
authorEditor Lionbridge <TizenEditor.SEL@lionbridge.com>
Wed, 26 Jul 2017 06:57:50 +0000 (12:27 +0530)
committerEditor Lionbridge <TizenEditor.SEL@lionbridge.com>
Mon, 7 Aug 2017 01:39:54 +0000 (10:39 +0900)
PS2: Restored unchanged files.
PS3: Remove \r
PS4: Rebase

Change-Id: Id46994695795fee5108ec0560b2e876d699974e2

src/Tizen.Messaging.Push/Tizen.Messaging.Push/PushClient.cs
src/Tizen.Messaging.Push/Tizen.Messaging.Push/PushConnectionStateEventArgs.cs
src/Tizen.Messaging.Push/Tizen.Messaging.Push/PushMessageEventArgs.cs

index 3ea1d86..3e9dd90 100644 (file)
@@ -25,9 +25,9 @@ namespace Tizen.Messaging.Push
     /// <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.
-    /// Api's are provided so that an application can register itself
-    /// with the push server along with api's to request push message.
+    /// It provides APIs to connect/disconnect from the push service.
+    /// APIs are provided so that an application can register itself
+    /// with the push server along with APIs to request push message.
     /// </remarks>
     /// <example>
     /// <code>
@@ -111,7 +111,7 @@ namespace Tizen.Messaging.Push
         /// <since_tizen> 3 </since_tizen>
         /// <privilege>http://tizen.org/privilege/push</privilege>
         /// <exception cref="InvalidOperationException"> In case of privilege not defined. </exception>
-        /// <param name="pushAppId"> The Push Application Id Registered with the server.</param>
+        /// <param name="pushAppId"> The Push Application ID Registered with the server.</param>
         public static void PushServiceConnect(string pushAppId)
         {
             PushImpl.Instance.PushServiceConnect(pushAppId);
@@ -133,7 +133,7 @@ namespace Tizen.Messaging.Push
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         /// <returns>
-        /// The method returns a task which on completion with give a ServerResponse Object.
+        /// The method returns a task, which on completion will give a ServerResponse Object.
         /// </returns>
         public static Task<ServerResponse> PushServerRegister()
         {
@@ -145,7 +145,7 @@ namespace Tizen.Messaging.Push
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         /// <returns>
-        /// The method returns a task which on completion with give a ServerResponse Object.
+        /// The method returns a task, which on completion will give a ServerResponse Object.
         /// </returns>
         public static Task<ServerResponse> PushServerUnregister()
         {
@@ -162,10 +162,10 @@ namespace Tizen.Messaging.Push
         }
 
         /// <summary>
-        /// registration Id received from server. </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.
+        /// It is the string, which is the ID received from the server.
         /// </returns>
         public static string GetRegistrationId()
         {
index dcf4965..d0983f5 100644 (file)
@@ -19,7 +19,7 @@ using System;
 namespace Tizen.Messaging.Push
 {
     /// <summary>
-    /// An extended EventArgs class which contains the State Information.
+    /// An extended EventArgs class, which contains the State Information.
     /// </summary>
     /// <since_tizen> 3 </since_tizen>
     public class PushConnectionStateEventArgs : EventArgs
@@ -69,7 +69,7 @@ namespace Tizen.Messaging.Push
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         /// <value>
-        /// It is the string which contains the error string if set.</value>
+        /// It is the string, which contains the error string if set.</value>
         public string Error
         {
             get;
index 1cb283e..eba6c0e 100644 (file)
@@ -19,7 +19,7 @@ using System;
 namespace Tizen.Messaging.Push
 {
     /// <summary>
-    /// An extended EventArgs class which contains the message received.
+    /// An extended EventArgs class, which contains the message received.
     /// </summary>
     /// <since_tizen> 3 </since_tizen>
     public class PushMessageEventArgs : EventArgs
@@ -28,7 +28,7 @@ namespace Tizen.Messaging.Push
         /// Gives the Application Data recieved. </summary>
         /// <since_tizen> 3 </since_tizen>
         /// <value>
-        /// It is the string which stores the application data.</value>
+        /// It is the string, which stores the application data.</value>
         public string AppData
         {
             get;
@@ -40,7 +40,7 @@ namespace Tizen.Messaging.Push
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         /// <value>
-        /// It is the string which stores the message field.</value>
+        /// It is the string, which stores the message field.</value>
         public string Message
         {
             get;
@@ -84,11 +84,11 @@ namespace Tizen.Messaging.Push
         }
 
         /// <summary>
-        /// Gives the request Id of the notification.
+        /// 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>
+        /// It is a string value representing the request ID of the Notification.</value>
         public string RequestId
         {
             get;