this is my code in expression :
Subject = MsgINMail(POP3.Subject);
Date = MsgINMail(POP3.Date);
From = MsgINMail(POP3.From);
To = MsgINMail(POP3.To);
Cc = MsgINMail(POP3.CC);
when i dont have CC in my mail im getting exception:
Inner exception: There is no value associated with the property ‘POP3.CC’ in the message.
Exception type: MissingPropertyException
Source: Microsoft.XLANGs.BizTalk.Engine
should i catch the exception or maybe there is a way to know if it’s null…