我正在尝试检索gmail收件箱列表。检索列表需要很长时间。 即使在进行最小负载呼叫之后。
client.Behavior.AutoDownloadBodyOnAccess = false;
client.Behavior.AutoPopulateFolderMessages = false;
client.Behavior.ExamineFolders = false;
client.Behavior.MessageFetchMode = MessageFetchMode.Tiny | MessageFetchMode.GMailLabels | MessageFetchMode.GMailMessageId;
client.Folders[name].Messages.Download("ALL", MessageFetchMode.Minimal, pagesize, skipmsgs); // Start the download process;
return client.Folders[name].Messages;
请告知如何获得良好的检索速度。