コード例 #1
0
        public ParticipantSet RetrieveReplyAllParticipants(ICorePropertyBag propertyBag)
        {
            ReplyAllParticipantsProperty replyAllParticipants = InternalSchema.ReplyAllParticipants;
            object obj = propertyBag.TryGetProperty(replyAllParticipants);

            return(this.RetrieveReplyAllData((IDictionary <RecipientItemType, HashSet <IParticipant> >)obj));
        }
コード例 #2
0
        public ParticipantSet RetrieveReplyAllParticipants(IStorePropertyBag propertyBag)
        {
            ParticipantSet result;

            using (IItem item = this.xsoFactory.BindToItem(this.session, (VersionedId)propertyBag.TryGetProperty(ItemSchema.Id), new PropertyDefinition[0]))
            {
                ReplyAllParticipantsProperty replyAllParticipants = InternalSchema.ReplyAllParticipants;
                object obj = item.TryGetProperty(replyAllParticipants);
                result = this.RetrieveReplyAllData((IDictionary <RecipientItemType, HashSet <IParticipant> >)obj);
            }
            return(result);
        }