Vb.net Windows Mobile 6.1上的SMSAccount类

Vb.net Windows Mobile 6.1上的SMSAccount类,vb.net,windows-mobile,outlook,sms,account,Vb.net,Windows Mobile,Outlook,Sms,Account,我正在用VB.Net为Windows Mobile phone编写一个应用程序,我想从手机的内存中读取SMS。根据MSDN,我需要SMSAccount类: 'SmsAccount Class 'Provides access to a Outlook Mobile Short Message Service (SMS) account, the account's SMS folders, and the SMS messages they contain. 然而,SMSAccount类只有一

我正在用VB.Net为Windows Mobile phone编写一个应用程序,我想从手机的内存中读取SMS。根据MSDN,我需要SMSAccount类:

'SmsAccount Class
'Provides access to a Outlook Mobile Short Message Service (SMS) account, the account's SMS folders, and the SMS messages they contain.
然而,SMSAccount类只有一个有趣的方法,即aka
Send
(请参阅),我不知道如何访问实际的消息

我在网上找到了一些建议使用smsAccount.Inbox属性的例子,但我找不到。例如,我得到了以下代码:

Dim smsAcc As SmsAccount
Dim smsFdr As SmsMessageFolder
smsFdr = smsAcc.Inbox
但是我找不到SmsMessageFolder类和Inbox属性

如何访问SMS

谢谢你的帮助,
CFP

您可能想使用本机或为某些本机实现编写自己的包装器

我找到了此链接


这似乎表明没有简单的方法可以做到这一点。我注意到当我搜索第三方实现时。我对它们了解不多,除了在几个论坛上建议的答案(所以你可能已经知道了)。

你想访问现有邮件还是只在有新邮件到来时访问?我想访问现有邮件(用于备份)。是的,但这会花费太长时间;我希望有文档记录的类真的存在……是的,谢谢,我知道那个。但奇怪的是,文档与实际功能不符。。。