Send Messageusing Microsoft.WindowsMobile.PocketOutlook;SmsMessage a = new SmsMessage("13988888888", "SmsMessage Testa.Send();//received smsMicrosoft.WindowsMobile.PocketOutlook.MessageInterception.MessageInterceptor nSms;void nSms_MessageReceived(object sender, Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessageInterceptorEventArgs e) ......{ listBox21.Items.Add(a.Body); listBox21.Items.Add(e.Message.From.Address.ToString()); listBox21.Items.Add(e.Message.From.Name.ToString()); //throw new Exception("The method or operation is not implemented."); } private void Form1_Load(object sender, EventArgs e) ......{ nSms = new Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessageInterceptor(); nSms.InterceptionAction = Microsoft.WindowsMobile.PocketOutlook.MessageInterception.InterceptionAction.NotifyAndDelete; nSms.MessageCondition.CaseSensitive = true; nSms.MessageCondition.Property = Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessageProperty.Sender; nSms.MessageCondition.ComparisonType = Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessagePropertyComparisonType.Equal; nSms.MessageCondition.ComparisonValue = "13988888888"; nSms.MessageReceived += new Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessageInterceptorEventHandler(nSms_MessageReceived); } have used POOM send sms and received sms,but I can't received sms body?why?I can't find errors in source code