他の人が以前にこの問題について議論しているように(例:Exchange web services: why is ItemId not constant?)、私は解決策について話したいと思います。私は人々がGuidを拡張プロパティとしてスタンプすることによって何を提案したのですか?いいえ(私はそれが発生と動作するようにはわかりません)が、アプリケーションが動作する限り、アプリケーションがアイテムの拡張プロパティを再起動すると消えて、今私の問題は、 "どのようにスタンプするEWSアイテムの拡張プロパティを作成し、それを絶えず作成しますか?」 これは、予定表アイテム(予定)Exchange Webサービス:Item Idが一定でないのはなぜですか? [続き]
public void SetGuidForAppointement(Appointment appointment)
{
appointment.SetExtendedProperty((ExtendedPropertyDefinition)_appointementIdPropertyDefinition, Guid.NewGuid().ToString());
appointment.Update(ConflictResolutionMode.AlwaysOverwrite, SendInvitationsOrCancellationsMode.SendToNone);
}
を更新するコードであり、これらは、上記の必要なプロパティを定義しています。誰もが前にこれを行っている場合
_appointementIdPropertyDefinition = new ExtendedPropertyDefinition(DefaultExtendedPropertySet.Appointment, "AppointmentID", MapiPropertyType.String);
_propertyDefinitionBases = new PropertyDefinitionBase[] { _appointementIdPropertyDefinition, ItemSchema.ParentFolderId, AppointmentSchema.Start, AppointmentSchema.End,
AppointmentSchema.LegacyFreeBusyStatus, AppointmentSchema.Organizer };
PropertySet = new PropertySet(BasePropertySet.FirstClassProperties, _propertyDefinitionBases);
それで、彼/彼女は、アプリケーションが終了しても、アイテムにスタンプ拡張プロパティを保持例を私に提供することができます。 ありがとう
こんにちは、「アプリケーションがアイテムの拡張プロパティを再起動すると、どういう意味ですか?」というのはどういう意味ですか? –
私は以下の答えで私自身の質問に答えました:) – BraveHeart
私は知っています。 :)しかし、私も拡張プロパティを使用し、それが可能な場合、私はそれに格納されている値は、いくつかの時点で失われている興味がありますか? –