My project I am working on a small program which has to set an alarm if the user locks the computer without removing the Smart Card from the computer.

I am using C# with WPF and .Net 4.0 and my smartcard is version V4.2C

My problem I have all the functionality to work but I simply don't know how to detect if the Smart Card is in the Smart Card Reader.

I have tried to search on google but with no result so I hope some of you can help me.

link|improve this question

What kind of smart card are you using? – Øyvind Knobloch-Bråthen Oct 31 '11 at 7:54
When the smart card is in the reader does the computer treat it as a storage device? If so you could just search for that drive letter when your application starts up. Or use a timer to check for the drive letter every so often. – stuartmclark Oct 31 '11 at 7:55
stuartmclark - Pretty sure it doesn't. I did some work with smartcards some time back, and it's actually quite a pain in the ass to work with. – Øyvind Knobloch-Bråthen Oct 31 '11 at 7:57
@Øyvind Knobloch-Bråthen It is version V4.2c – FireFly3000 Oct 31 '11 at 8:31
feedback

3 Answers

up vote 1 down vote accepted

Well, if I google for "C# smartcard" the first link which pops up is a code project article. It appears that the project provides events for detection of smartcard insertion/removal which is probably what you want.

link|improve this answer
Thanks.... I have tryed the demo application here and it looks like it does what I want. My problem is just that I have no idea of how to implement this. Can you help me here? – FireFly3000 Oct 31 '11 at 10:08
feedback

Usually you would want to use the PC/SC framework for talking with a smart card, but it can be quite some work to implement from scratch yourself.

I would recommend to look into some existing project and get some ideas from there, as there are many projects that implements PC/SC in .NET.

Take this one from CodeProject for example.

link|improve this answer
feedback

Have a look at http://code.google.com/p/pcsc-sharp/

Works very well for me on 32bit and 64bit platforms, and supports mono too.

link|improve this answer
How can I implement it? – FireFly3000 Oct 31 '11 at 12:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.