[NFC][Non-ACR] Fix NFC Csharp TC failed issue (#1849)
authorjh8801jung <jh8801.jung@samsung.com>
Wed, 22 Jul 2020 00:25:59 +0000 (09:25 +0900)
committerGitHub <noreply@github.com>
Wed, 22 Jul 2020 00:25:59 +0000 (09:25 +0900)
- https://code.sec.samsung.net/jira/browse/TFDF-10927
- It seems that the callback is missing from the constructor in API8 branch

Signed-off-by: Jihoon Jung <jh8801.jung@samsung.com>
src/Tizen.Network.Nfc/Tizen.Network.Nfc/NfcTag.cs

index 55783ae..a6f193b 100644 (file)
@@ -129,6 +129,9 @@ namespace Tizen.Network.Nfc
         internal NfcTag(IntPtr handle)
         {
             _tagHandle = handle;
+            _nativeTransceiveCallback = TransceiveCompletedCallback;
+            _nativeVoidCallback = VoidCallback;
+            _nativeTagReadCallback = ReadNdefCallback;
         }
 
         /// <summary>