Merge remote-tracking branch 'origin/API9' into tizen_6.5
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.MessagePort / Tizen.Applications.Messages / RemoteValues.cs
index db853d3..718a3b7 100755 (executable)
 namespace Tizen.Applications.Messages
 {
     /// <summary>
-    /// Contains AppId, Port Name, Trusted
+    /// Contains AppId, port name, and trusted.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public class RemoteValues
     {
         /// <summary>
-        /// The ID of the remote application that sent this message
+        /// The ID of the remote application that sent this message.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public string AppId { get; set; }
 
         /// <summary>
-        /// The name of the remote message port
+        /// The name of the remote message port.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public string PortName { get; set; }
 
         /// <summary>
-        /// If true the remote port is a trusted port, otherwise if false it is not
+        /// If true, the remote port is a trusted port, otherwise, if false, it is not.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool Trusted { get; set; }
     }
 }