EWS SetExtendedProperty问题

时间:2017-05-16 15:45:28

标签: c# exchangewebservices extended-properties

我尝试使用新属性更新现有电子邮件,但我无法正常工作..我正在通过添加带有时间戳字符串的自定义属性来测试它。 。

当我在运行之后获取该项目时,我根本看不到任何扩展属性...

以下是我试图保存它的方法:

message.Load();
Guid MyPropertySetId = new Guid("{117c7745-5df5-4049-97be-8e2d2d92d566}");
ExtendedPropertyDefinition extendedPropertyDefinition = new ExtendedPropertyDefinition(MyPropertySetId, "JNB", MapiPropertyType.String);
message.SetExtendedProperty(extendedPropertyDefinition, DateTime.Now.AddDays(2).ToString());
message.Update(ConflictResolutionMode.AlwaysOverwrite);

然后当我再次把它拉回来时,我就这样做了:

if (item.ExtendedProperties.Count > 0)
{
    // Display the name and value of the extended property.
    foreach (ExtendedProperty extendedProperty in item.ExtendedProperties)
    {
        if (extendedProperty.PropertyDefinition.Name == "ccpUniqueID")
        {
            messageAlreadyLogged = AccountMessageManager.HasMessageAlreadyBeenSaved(extendedProperty.Value.ToString());
        }

    }
}

没有任何扩展属性......

1 个答案:

答案 0 :(得分:2)

Exchange只返回您告诉它返回的扩展属性,因此在您的情况下,您需要将该属性添加到属性集,然后使用Load将其加载(默认情况下不会发生这种情况),例如

        Guid MyPropertySetId = new Guid("{117c7745-5df5-4049-97be-8e2d2d92d566}");
        ExtendedPropertyDefinition extendedPropertyDefinition = new ExtendedPropertyDefinition(MyPropertySetId, "JNB", MapiPropertyType.String);
        PropertySet psPropSet = new PropertySet(BasePropertySet.FirstClassProperties){extendedPropertyDefinition};
        message.Load(psPropSet);