diff options
author | Editor Lionbridge <TizenEditor.SEL@lionbridge.com> | 2017-07-26 12:27:50 +0530 |
---|---|---|
committer | Editor Lionbridge <TizenEditor.SEL@lionbridge.com> | 2017-08-07 10:39:54 +0900 |
commit | 557e7dd528fb0fe02ecf9b84a0c1c1e7cd6792da (patch) | |
tree | e4d3879f234fea56c54cb40dccbdd5da695929e7 | |
parent | 33433f6856341b76b16564276fb4d55120691623 (diff) | |
download | push-557e7dd528fb0fe02ecf9b84a0c1c1e7cd6792da.tar.gz push-557e7dd528fb0fe02ecf9b84a0c1c1e7cd6792da.tar.bz2 push-557e7dd528fb0fe02ecf9b84a0c1c1e7cd6792da.zip |
Review Push API cs filessubmit/tizen_4.0/20170828.100003submit/tizen/20170808.045840accepted/tizen/unified/20170808.171531accepted/tizen/4.0/unified/20170828.223616accepted/tizen_unifiedaccepted/tizen_4.0_unified
PS2: Restored unchanged files.
PS3: Remove \r
PS4: Rebase
Change-Id: Id46994695795fee5108ec0560b2e876d699974e2
3 files changed, 15 insertions, 15 deletions
diff --git a/Tizen.Messaging.Push/Tizen.Messaging.Push/PushClient.cs b/Tizen.Messaging.Push/Tizen.Messaging.Push/PushClient.cs index 3ea1d86..3e9dd90 100644 --- a/Tizen.Messaging.Push/Tizen.Messaging.Push/PushClient.cs +++ b/Tizen.Messaging.Push/Tizen.Messaging.Push/PushClient.cs @@ -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() { diff --git a/Tizen.Messaging.Push/Tizen.Messaging.Push/PushConnectionStateEventArgs.cs b/Tizen.Messaging.Push/Tizen.Messaging.Push/PushConnectionStateEventArgs.cs index dcf4965..d0983f5 100644 --- a/Tizen.Messaging.Push/Tizen.Messaging.Push/PushConnectionStateEventArgs.cs +++ b/Tizen.Messaging.Push/Tizen.Messaging.Push/PushConnectionStateEventArgs.cs @@ -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; diff --git a/Tizen.Messaging.Push/Tizen.Messaging.Push/PushMessageEventArgs.cs b/Tizen.Messaging.Push/Tizen.Messaging.Push/PushMessageEventArgs.cs index 1cb283e..eba6c0e 100644 --- a/Tizen.Messaging.Push/Tizen.Messaging.Push/PushMessageEventArgs.cs +++ b/Tizen.Messaging.Push/Tizen.Messaging.Push/PushMessageEventArgs.cs @@ -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; |