libs.nfc/NFC.iOS/Hardware_iOS.cs

25 lines
492 B
C#
Raw Normal View History

2021-03-31 14:34:26 +02:00
//using System;
//using NFC.Interfaces;
//using CoreNFC;
//namespace NFC_iOS
//{
// public class Hardware_iOS : IHardware
// {
// public bool IsAvailable()
// {
// return NFCReaderSession.ReadingAvailable;
// }
// public String[] GetReaders()
// {
// return new String[] { "main" };
// }
// public IReader OpenReader(String readerID)
// {
// return new Reader_iOS();
// }
// }
//}