Beispiel #1
0
        /// <summary>
        /// Wraps the PCSC function
        /// LONG SCardListReaders(SCARDCONTEXT hContext, 
        ///		LPCTSTR mszGroups, 
        ///		LPTSTR mszReaders, 
        ///		LPDWORD pcchReaders 
        ///	);
        /// </summary>
        /// <returns>A string array of the readers</returns>
        public override string[] ListReaders()
        {
            ISCardDatabaseEx itfCardBase = new SCardDatabaseEx();

            return (string[]) itfCardBase.ListReaders();
        }
Beispiel #2
0
        /// <summary>
        /// Wraps the PCSC function
        /// LONG SCardListReaders(SCARDCONTEXT hContext,
        ///		LPCTSTR mszGroups,
        ///		LPTSTR mszReaders,
        ///		LPDWORD pcchReaders
        ///	);
        /// </summary>
        /// <returns>A string array of the readers</returns>
        public override string[]       ListReaders()
        {
            ISCardDatabaseEx itfCardBase = new SCardDatabaseEx();

            return((string[])itfCardBase.ListReaders());
        }