我有一个程序,我需要从我们的交换服务器获取电子邮件。我从一个旧项目中得到这个:
Dim oExchService As New ExchangeService(Microsoft.Exchange.WebServices.Data.ExchangeVersion.Exchange2007_SP1)
oExchService.Credentials = New Net.NetworkCredential(strUserName, strPassword, strDomain)
oExchService.Url = New Uri(strServeur)
Dim oItemView As New ItemView(1000)
oItemView.Traversal = ItemTraversal.Shallow
Dim oLstItems As FindItemsResults(Of Item) = oExchService.FindItems(WellKnownFolderName.Inbox, oItemView)
'Importation de chaque fichier
For Each oItem As Item In oLstItems
If oItem.HasAttachments Then
End If
Next
我添加了对 Microsoft.Exchange.webservice.dll 的引用,这也是我从另一个项目中获得的,并在文件中导入了引用。一切似乎都很好,我可以与班级内的成员一起工作。当我点击编译时,进口声明得到绿色下划线,说明参考不存在或没有任何公共成员......
有人知道发生了什么吗?