我正在使用ExchangeService WebService API(Microsoft.Exchange.WebServices.Data
),但是找不到任何Close
或Dispose
方法。
是否不需要以某种方式关闭连接?
我的方法如下所示:
public void CheckMails()
{
ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2007_SP1);
IMAPCredentials creds = new IMAPCredentials();
service.Credentials = new NetworkCredential(creds.User, creds.Pass, creds.Domain);
service.AutodiscoverUrl(creds.User + "@example.com");
// not the real code from here on but you'll get the idea...
// var emails = service.FindItems();
// emails[0].Load();
// emails[0].Attachments[0].Load();
// ...
}
最佳答案
ExchangeService
类上没有Close/Dispose方法,因为该类不维护与Web服务的连接。而是根据需要创建并关闭新的HTTP连接。
例如,当您调用ExchangeService.FindItems
时,将创建对Exchange服务器的新HTTP连接,并在对FindItems
的方法调用中将其关闭。
关于c# - 在C#中处置/关闭ExchangeService?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9209903/