我有以下代码,它可以工作:
private void OnEvent(object sender, NotificationEventArgs args)
{
StreamingSubscription sub = args.Subscription;
foreach (NotificationEvent notification in args.Events)
{
switch (notification.EventType)
{
case EventType.NewMail:
if (notification is ItemEvent)
{
ItemEvent item = (ItemEvent)notification;
EmailMessage message = EmailMessage.Bind(service, item.ItemId);
string fAddress = message.From.Address;
string subject = message.Subject;
string body = message.Body.Text;
string tAddress = message.ToRecipients[0].Address;
//and so on...
}
break;
}
}
}
但是,如果我尝试将“body”设置为像这样的UniqueBody ......
string body = message.UniqueBody.Text;
错误说“你必须加载或分配这个属性才能读取它的值。”我希望UniqueBody可以开箱即用,这意味着我不必解析新的电子邮件来获取我关心的新细节。我假设有一些我很想念的东西。有什么想法吗?
答案 0 :(得分:4)
当您绑定要接收的ItemId
时,您需要明确您想要的属性。
例如,
var propertySet = new PropertySet(ItemSchema.UniqueBody);
var email = EmailMessage.Bind(service, item.ItemId, propertySet);
PropertySet
类的重载包含params[]
,因此您可以自由地包含/排除许多其他属性。只需查看ItemSchema
枚举,然后选择您想要的那些。
答案 1 :(得分:1)
这是我最终使用的:
PropertySet pSet = new PropertySet(new[]{ ItemSchema.UniqueBody });
pSet.RequestedBodyType = BodyType.Text;
pSet.BasePropertySet = BasePropertySet.FirstClassProperties;