EWS使用额外的自定义属性创建Appointment



我目前正在寻找一种使用c#为交换约会保存一些额外属性的方法。目前我可以使用以下属性保存:

Appointment calendar = new Appointment(p_service);
calendar.Subject = calendarS5Subject;
calendar.Body = calendarS5Body;
calendar.Start = calendarS5StartDateTime;
calendar.End = calendarS5EndDateTime;
calendar.IsReminderSet = false;
calendar.Location = calendarS5Location;
calendar.Body.BodyType = BodyType.Text;
calendar.Save();

然而,我希望能够存储我自己的自定义属性,如calendar.EventIDcalendar.Blah。是否有可能根据约会保存这些属性,然后能够稍后访问它们?如果可以将其全部存储为指定窗口内的用户控件表单,那就更好了。我知道您可以使用outlook插件来完成此操作,该插件使用类型为AppointmentItem。但是,我还没有找到一种方法来使用Appointment类型的交换来做到这一点。

TIA。我现在已经能够保存额外的属性使用:

Guid EventIDSetGUID = new Guid("{C11FF724-AA03-4555-9952-8FA248A11C3E}");
ExtendedPropertyDefinition extendedPropertyEventID = new ExtendedPropertyDefinition(EventIDSetGUID, "EventID", MapiPropertyType.String);
calendar.SetExtendedProperty(extendedPropertyEventID, calendarS5EventID);

然而,我现在正在努力读回属性稍后。这工作后,我已经保存了额外的属性,但如果我重新启动应用程序,然后尝试读取额外的属性eventIDProp总是返回null。我的阅读代码:

Guid EventIDReadGUID = new Guid("{C11FF724-AA03-4555-9952-8FA248A11C3E}");
ExtendedPropertyDefinition extendedPropertyEventIDRead = new ExtendedPropertyDefinition(EventIDReadGUID, "EventID", MapiPropertyType.String);
object eventIDProp;
if (calendar.TryGetProperty(extendedPropertyEventIDRead, out eventIDProp) && eventIDProp != calendarS5EventID)
{
}

您可以使用MAPI扩展属性:

    // Define MAPI extended properties
    private readonly ExtendedPropertyDefinition _extendedPropEventId = 
        new ExtendedPropertyDefinition(
            new Guid("{00020329-0000-0000-C000-000000000046}"),
            "Event Identifier",
            MapiPropertyType.String);
    private readonly ExtendedPropertyDefinition _extendedPropBlah = 
        new ExtendedPropertyDefinition(
            new Guid("{00020329-0000-0000-C000-000000000046}"),
            "Blah",
            MapiPropertyType.String);
...
    // Set extended properties for appointment
    calendar.SetExtendedProperty(_extendedPropEventId, "custom EventID value");
    calendar.SetExtendedProperty(_extendedPropBlah, "custom Blah value");
...
    // Bind to existing item for reading extended properties
    var propertySet = new PropertySet(BasePropertySet.FirstClassProperties, _extendedPropEventId, _extendedPropBlah);
    var calendar = Appointment.Bind(p_service, itemId, propertySet);
    if (calendar.ExtendedProperties.Any(ep => ep.PropertyDefinition.PropertySetId == _extendedPropEventId.PropertySetId))
    {
        // Add your code here...
    }

最新更新