你能告诉我我做错了什么吗?我之前已经下载了标题。所以 Message 不为空。但是 msg.Body 为空。只有当我使用 folder.Messages.Download 下载并使用 UID 时,它才会起作用。
Message aMassage = folder.Messages[index];
// this is not working
aMassage.Download(MessageFetchMode.Body);
// this is working to download body
long[] arrLong = new long[1];
arrLong[0] = aMassage.UId;
folder.Messages.Download(arrLong, MessageFetchMode.Body);