SCardListReaders

[DllImport("winscard.dll", SetLastError = true)]
public static extern int SCardListReaders(
   IntPtr hContext,
   byte[] mszReaders,
   ref uint pcchReaders
);

Microsoft documentation: Link

Last updated