Hi all
I have an application that read a stream msg file.
There is a property I need to retrive it from that msg.
What I discovered is that thses property Id is changed from msg file to another msg file.
e.g.
Outlook.MapiProperty prop = msg.Properties[2147680287];
if (prop == null)
prop = msg.Properties[2149253151];
if (prop == null)
prop = msg.Properties[2149056543];
if (prop == null)
prop = msg.Properties[2147745823];
if (prop != null)
return prop.ToString();
so here I'm using 4 values to get the same property, and some times I end up with null prop.
I applay this for a special msg file of message class type = "IPM.Note.EnterpriseVault.Shortcut"
I'm sure the property is saved in the msg file, see the attached file
thanks