如何从EWS中的传入电子邮件中获取UniqueBody?

时间:2011-05-17 20:34:11

标签: c# exchangewebservices

我有以下代码,它可以工作:

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可以开箱即用,这意味着我不必解析新的电子邮件来获取我关心的新细节。我假设有一些我很想念的东西。有什么想法吗?

2 个答案:

答案 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;