From 003be704024ac8066c37c732de033d3c6a082afa Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Tue, 11 Jul 2017 22:05:58 -0500 Subject: [PATCH] [CoreNFC] Update to Xcode 9 Beta 3 --- src/corenfc.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/corenfc.cs b/src/corenfc.cs index 93419b0a1fe..16bfbe4b7f7 100644 --- a/src/corenfc.cs +++ b/src/corenfc.cs @@ -27,6 +27,7 @@ namespace XamCore.CoreNFC { [Native] public enum NFCReaderError : nint { UnsupportedFeature = 1, + SecurityViolation, ReaderTransceiveErrorTagConnectionLost = 100, ReaderTransceiveErrorRetryExceeded, ReaderTransceiveErrorTagResponseError, @@ -73,6 +74,9 @@ interface NFCIso15693ReaderSession { [Static] [Export ("readingAvailable")] bool ReadingAvailable { get; } + + [Export ("restartPolling")] + void RestartPolling (); } //[iOS (11,0), NoTV, NoWatch, NoMac] @@ -227,6 +231,10 @@ interface NFCReaderSessionContract { [Export ("ready")] bool Ready { [Bind ("isReady")] get; } + [Abstract] + [Export ("alertMessage")] + string AlertMessage { get; set; } + [Abstract] [Export ("beginSession")] void BeginSession ();