Skip to content

Commit

Permalink
[CoreNFC] Update to Xcode 9 Beta 3 (#2318)
Browse files Browse the repository at this point in the history
  • Loading branch information
dalexsoto authored Jul 12, 2017
1 parent c9b8b01 commit 63fda9a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/corenfc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ namespace XamCore.CoreNFC {
[Native]
public enum NFCReaderError : nint {
UnsupportedFeature = 1,
SecurityViolation,
ReaderTransceiveErrorTagConnectionLost = 100,
ReaderTransceiveErrorRetryExceeded,
ReaderTransceiveErrorTagResponseError,
Expand Down Expand Up @@ -73,6 +74,9 @@ interface NFCIso15693ReaderSession {
[Static]
[Export ("readingAvailable")]
bool ReadingAvailable { get; }

[Export ("restartPolling")]
void RestartPolling ();
}

//[iOS (11,0), NoTV, NoWatch, NoMac]
Expand Down Expand Up @@ -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 ();
Expand Down

0 comments on commit 63fda9a

Please sign in to comment.