X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.Applications.MessagePort%2FTizen.Applications.Messages%2FRemotePort.cs;h=5e9f54151e817c16778db330cc969eae2b2661e2;hb=177cb4becf9e964680fb342f3b7a3f2f04073129;hp=1d6d0d4c1eb811d8befef9cc1d7499cfef480119;hpb=40bcedea4800e8beaecfe627283c4142738eac6e;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.Applications.MessagePort/Tizen.Applications.Messages/RemotePort.cs b/src/Tizen.Applications.MessagePort/Tizen.Applications.Messages/RemotePort.cs index 1d6d0d4..5e9f541 100755 --- a/src/Tizen.Applications.MessagePort/Tizen.Applications.Messages/RemotePort.cs +++ b/src/Tizen.Applications.MessagePort/Tizen.Applications.Messages/RemotePort.cs @@ -47,7 +47,7 @@ namespace Tizen.Applications.Messages /// The Id of the remote application /// The name of the remote message port /// If true is the trusted message port of application, otherwise false - /// Thrown when appId is null or empty, when portName is null or empty + /// Thrown when appId is null or empty, when portName is null or empty /// /// RemotePort remotePort = new RemotePort("org.tizen.example.messageport", "SenderPort", false); /// @@ -135,7 +135,8 @@ namespace Tizen.Applications.Messages /// Check if the remote message port is running. /// /// 4 - /// Thrown when out of memory, when there is an I/O error + /// Thrown when there is an I/O error + /// Thrown when out of memory. /// /// Remote remotePort = new RemotePort("org.tizen.example", "SenderPort", true); /// bool isRunning = remotePort.isRunning(); @@ -161,7 +162,8 @@ namespace Tizen.Applications.Messages /// Called when the remote port is registered or unregistered. /// /// 4 - /// Thrown when out of memory, when there is an I/O error + /// Thrown when there is an I/O error + /// Thrown when out of memory. /// /// Remote remotePort = new RemotePort("org.tizen.example", "SenderPort", true); /// remotePort.RemotePortStateChanged += RemotePortStateChangedCallback;