我有一个程序,我需要从我们的Exchange服务器收到电子邮件。我从一个旧项目中得到了这个:
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的引用,我从其他项目中获取了该引用并导入了该文件中的引用。一切似乎都很好,我可以与classe内的成员合作。当我点击编译时,导入状态变为绿色下划线表明引用不存在或没有任何公共成员......
有人知道发生了什么事吗?
答案 0 :(得分:1)