summaryrefslogtreecommitdiff
path: root/Tizen.Network.Nfc/Tizen.Network.Nfc/NfcP2p.cs
diff options
context:
space:
mode:
authorEditor Lionbridge <TizenEditor.SEL@lionbridge.com>2017-08-11 19:43:12 +0530
committerEditor Lionbridge <TizenEditor.SEL@lionbridge.com>2017-08-16 13:01:24 +0530
commit4a3fa620e6b05b57536bc98418194e72cf34de84 (patch)
treeaeade71f89db7e1d6cda466a7ce2560b5b05cc8a /Tizen.Network.Nfc/Tizen.Network.Nfc/NfcP2p.cs
parent72b60ac487a6d24ced780678dec06dfea40813f9 (diff)
downloadnfc-tizen.tar.gz
nfc-tizen.tar.bz2
nfc-tizen.zip
Review nfc API cs filestizen
PS1: Further edits Change-Id: I36e4c5ff74a1441f2c6d65d7d4391bef150d861f
Diffstat (limited to 'Tizen.Network.Nfc/Tizen.Network.Nfc/NfcP2p.cs')
-rwxr-xr-xTizen.Network.Nfc/Tizen.Network.Nfc/NfcP2p.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/Tizen.Network.Nfc/Tizen.Network.Nfc/NfcP2p.cs b/Tizen.Network.Nfc/Tizen.Network.Nfc/NfcP2p.cs
index 90a1c4f..441bb08 100755
--- a/Tizen.Network.Nfc/Tizen.Network.Nfc/NfcP2p.cs
+++ b/Tizen.Network.Nfc/Tizen.Network.Nfc/NfcP2p.cs
@@ -22,7 +22,7 @@ using System.Threading.Tasks;
namespace Tizen.Network.Nfc
{
/// <summary>
- /// A class for managing the p2p target information.
+ /// The class for managing the P2P target information.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public class NfcP2p : IDisposable
@@ -35,7 +35,7 @@ namespace Tizen.Network.Nfc
private Interop.Nfc.P2pDataReceivedCallback _p2pDataReceivedCallback;
/// <summary>
- /// The event for receiving data from NFC peer-to-peer target.
+ /// The event for receiving data from the NFC peer-to-peer target.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public event EventHandler<P2pDataReceivedEventArgs> P2pDataReceived
@@ -87,14 +87,14 @@ namespace Tizen.Network.Nfc
}
/// <summary>
- /// Sends data to NFC peer-to-peer target.
+ /// Sends data to the NFC peer-to-peer target.
/// </summary>
/// <since_tizen> 3 </since_tizen>
- /// <param name="ndefMessage">NfcNdefMessage object.</param>
+ /// <param name="ndefMessage">The NfcNdefMessage object.</param>
/// <privilege>http://tizen.org/privilege/nfc</privilege>
- /// <exception cref="NotSupportedException">Thrown when Nfc is not supported.</exception>
- /// <exception cref="ArgumentException">Thrown when method is failed due to an invalid parameter.</exception>
- /// <exception cref="InvalidOperationException">Thrown when the method failed due to invalid operation.</exception>
+ /// <exception cref="NotSupportedException">Thrown when the NFC is not supported.</exception>
+ /// <exception cref="ArgumentException">Thrown when the method fails due to an invalid parameter.</exception>
+ /// <exception cref="InvalidOperationException">Thrown when the method fails due to an invalid operation.</exception>
public Task<NfcError> SendNdefMessageAsync(NfcNdefMessage ndefMessage)
{
var task = new TaskCompletionSource<NfcError>();
@@ -137,7 +137,7 @@ namespace Tizen.Network.Nfc
}
/// <summary>
- /// A class for managing the snep(Simple NDEF Exchange Protocol) information.
+ /// The class for managing the SNEP (Simple NDEF Exchange Protocol) information.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public class NfcSnep : IDisposable