Re: reading user defined properties using EWS
- From: "Glen Scales [MVP]" <gscales@xxxxxxxxxxxxxxxxxxx>
- Date: Tue, 21 Oct 2008 09:10:03 +1100
You just need to use need to include something to retreive your custom
property unless you have set your own GUID they should be in the Public
Namespace so some thing like this should work in a GetItem or FindItem
request
PathToExtendedFieldType path = new PathToExtendedFieldType();
path.DistinguishedPropertySetId =
DistinguishedPropertySetType.PublicStrings;
path.DistinguishedPropertySetIdSpecified = true;
path.PropertyName = "fred";
path.PropertyType = MapiPropertyTypeType.String;
BasePathToElementType[] beAdditionproperteis = new
BasePathToElementType[1]{ path };
Cheers
Glen
"Bilal" <bilal@xxxxxxxxxxxxxxxx> wrote in message
news:1B768082-EC1D-451D-9EA7-088626020264@xxxxxxxxxxxxxxxx
We have designed a custom form with user defined fields. A process is
built
to read the custom form in inbox using exchange web service, read the
values
from email and update database. Still could not figure out how to read the
user defined field values in the email. Any help on this is very much
appreciated.
.
- References:
- reading user defined properties using EWS
- From: Bilal
- reading user defined properties using EWS
- Prev by Date: Re: Subscribing to Exchange Server
- Next by Date: Re: FindItem without knowing the password?
- Previous by thread: reading user defined properties using EWS
- Next by thread: Attachment "Device Independent Bitmap" and CDO.Attachment.WriteToF
- Index(es):
Relevant Pages
|