I have used the ImapX library to SEARCH Gmail using queries like :

ImapX.MessageCollection msg= c.Folders["INBOX"].Search("SUBJECT <abc>", false); 

I get the error above when I try and retrieve a message using

MessageCollection msg= client.Folders["INBOX"].Search("UID <abc>", false);

where i have previously established the UID using the MessageUID property which IMapx exposes on an specific message, I get the same error when trying to use the MessageId property.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

ImapX.MessageCollection msg= c.Folders["INBOX"].Search("SUBJECT abc", false);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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