0
ews SearchFilter
およびFindItems
を使用してSeries AppointmentのFirstOccurenceおよび/またはLastOccurence Start/Endプロパティでフィルタリングする方法はありますか?FirstOccurrence/LastOccurrenceでフィルタリングする方法はありますか
ews SearchFilter
およびFindItems
を使用してSeries AppointmentのFirstOccurenceおよび/またはLastOccurence Start/Endプロパティでフィルタリングする方法はありますか?FirstOccurrence/LastOccurrenceでフィルタリングする方法はありますか
あなたは
まず発生のextendedpropertiesを使用することができるはずPidLidClipStart https://msdn.microsoft.com/en-us/library/office/cc839770.aspx
最後に出現https://msdn.microsoft.com/en-us/library/office/cc765713.aspx
例えば
ExtendedPropertyDefinition PidLidClipStart = new ExtendedPropertyDefinition(DefaultExtendedPropertySet.Appointment, 0x8235,MapiPropertyType.SystemTime);
SearchFilter SFilt = new SearchFilter.IsGreaterThan(PidLidClipStart, DateTime.Now);
をPidLidClipEnd(それはないかもしれないものを持っている場合)不幸なことに、私はサービス例外を取得します:「このタイプの制限ではプロパティを使用することはできません。 – ivo
^私はまた、プロパティの生のガイドと試しましたが、無駄に – ivo