Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on MailClient and I want to set Multipal Flags for Eg. SEEN, UNSEEN so how I can set in C#, I had pass this command like this but it will give me error. like BAD command. so the my command like this. byte[] commandBytes = System.Text.Encoding.ASCII.GetBytes((@"$ UID SEARCH UNSEEN \SEEN" + "\r\n"));

Thanks..

share|improve this question

1 Answer

up vote 1 down vote accepted

Don't use backslash, this is the correct request:

A000 UID SEARCH SEEN UNSEEN

Are you sure you want write you own IMAP client from scrach? There are some opensource libraries, as well as paid ones (My Mail.dll IMAP component for example).

share|improve this answer
1  
+1 for Don't Reinvent the Wheel, especially if you are not a domain expert. – tripleee Sep 8 '11 at 8:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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