namespace NFC.Interfaces { public interface ICard { /// /// Connect to Smartcard /// void Connect(); /// /// Disconnect from Smartcard /// void Disconnect(); /// /// Transmit APDU Command to Smartcard /// /// Application Protocol Data Unit Command - ISO 7816 /// Application Protocol Data Unit Response - ISO 7816 APDUResponse Transmit(APDUCommand apdu_cmd); } }