电子邮件详细信息显示错误“Id is malformed”

时间:2016-03-28 11:36:16

标签: c# exchangewebservices

当我尝试使用Exchange网络服务获取邮件ID的办公室365邮件详细信息时,向我显示“ID格式错误”的错误。 我写了以下代码来获取邮件详细信息 -

ServicePointManager.ServerCertificateValidationCallback = CertificateValidationCallBack;

ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2013_SP1);
service.Credentials = new WebCredentials(Ownerusername, OwnerPassword);

service.AutodiscoverUrl(Ownerusername, RedirectionUrlValidationCallback);
EmailMessage mail = EmailMessage.Bind(service, mailID, PropertySet.FirstClassProperties);

最后一行显示错误"Id is malformed"

提前致谢。

1 个答案:

答案 0 :(得分:0)

问题解决了。 Request.QueryString [“mailID”]值格式不正确。感谢您的宝贵意见。