[MessagePort] Modify MessagePort, modify Bundle's handle
[platform/core/csapi/tizenfx.git] / Tizen.Applications / Tizen.Applications.MessagePort / RemoteValues.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6
7 namespace Tizen.Applications.MessagePort
8 {
9     /// <summary>
10     /// Contains AppId, Port Name, Trusted
11     /// </summary>
12     public struct RemoteValues
13     {
14         /// <summary>
15         /// The ID of the remote application that sent this message
16         /// </summary>
17         public string AppId;
18         /// <summary>
19         /// The name of the remote message port
20         /// </summary>
21         public string PortName;
22         /// <summary>
23         /// If true the remote port is a trusted port, otherwise if false it is not
24         /// </summary>
25         public bool Trusted;
26     }
27 }