c# library that extracts gmail,yahoomail and AOL contacts..

Posted by Pandiya Chendur on Stack Overflow See other posts from Stack Overflow or by Pandiya Chendur
Published on 2010-06-09T03:47:01Z Indexed on 2010/06/09 3:52 UTC
Read the original article Hit count: 352

Filed under:
|
|
|
|

Is there any good c# library that extracts gmail,yahoomail and AOL contacts? Any suggestion...

I looked at Opencontacts.net and i used opencontacts.dll in my asp.net web application but i can't able to make it work... It shows an error Could not load file or assembly 'Utilities, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.....

I did this,

OpenContactsNet.GmailExtract gm = new OpenContactsNet.GmailExtract();
NetworkCredential nw =new NetworkCredential("[email protected]","***");
OpenContactsNet.MailContactList ml = new OpenContactsNet.MailContactList();
gm.Extract(nw, out ml);

I am in search of any other c# library which would do my needs....

© Stack Overflow or respective owner

Related posts about c#

Related posts about library