Hi Pavel,
Thanks a ton for the reply. I was using the usual .Net library in Mono. I followed your instructions :-
Thanks a ton for the reply. I was using the usual .Net library in Mono. I followed your instructions :-
- Downloaded the source code and compiled it using Xamarin Studio. Used the newly created binary file in my project.
- Created the log file same as mentioned in the docs but no logs were generated in it, its blank. Following is how I am logging it :-
Debug.Listeners.Add(new TextWriterTraceListener(Path.Combine (Environment.GetFolderPath (Environment.SpecialFolder.MyDocuments), "test.txt")));
Debug.AutoFlush = true;
var client = new ImapX.ImapClient ("imap.gmail.com", true);
bool cc=client.Connect ();
// After you created the client, set
client.IsDebug = true;
Is it correct ?