Hi Winnie,
Thanks for your reply!
using PropertyAccessor I am trying to check MAPI property value. Please see below code.
If conference room is been added as a Resources we can identify but what if it has been added as a Required attendee OR required attendee has been added as a Resources to use BCC feature in meeting.
That's why i want to confirm the attendee type (resources or actually attendee) regardless the field it has been added.
Please refer below link where it's mentioned about this property accessor approach to achieve this.
https://msdn.microsoft.com/en-us/library/office/ff863703.aspx
const string PidTagDisplayTypeEx = @"http://schemas.microsoft.com/mapi/proptag/0x39050003";
foreach(recipient rec in meetingRecipients)
{ var recipientType = rec.PropertyAccessor.GetProperty(PidTagDisplayTypeEx);
//always getting 1073741824 (0x40000000) for all the type of attendees (resources & internal to the firm contacts)
//As per articles i have added before this value should be different for different attendee types
//so we can confirm whether added attendee is resource type or real attendee.
}
Thanks,
Manoj
ManojPatel