Hello,
I am stepping through the code of the IMAP sample mail client and have encountered a need to load the Lumisoft.Net source project. When I added this project to the solution, and changed the mail client's reference to Lumisoft.Net from the compiled dll to the source project, I have found that a class in the Lumisoft.Net compiled dll library in the debug directory of the sample mail client project seems to be missing from the Lumisoft.Net source code project.
The errant lines of code in the sample mail client after changing the reference are:
m_pImap.MessageExpunged += new EventHandler<EventArgs<IMAP_r_u_Expunge>>(m_pImap_MessageExpunged);
and
private void m_pImap_MessageExpunged(object sender,EventArgs<IMAP_r_u_Expunge> e)
Both lines are found in the code-behind of wfrm_Main.cs file. The class in question is IMAP_r_u_Expunge which reflection says is in the LumiSoft.Net.IMAP namespace.
So, my question is where do I get the source code project for the Lumisoft.Net library that is being used by the sample IMAP mail client project... or (LoL) the right IMAP mail client project for the Lumisoft.Net project I have. The Lumisoft.Net.zip file I have is dated Jan 27, 2010 in the downloads area.
Thanks.
- Randolph