我需要更熟悉这个领域的人来重新标题这个问题
我正在尝试了解有关webDAV和.NET的更多信息。我编写了一个应用程序,需要从服务器上的收件箱中提取所有电子邮件。我需要将这些电子邮件加载到具有以下属性的对象中:
- From - To - Subject - Body
我发现了一篇非常有用的帖子here。但我不太确定如何操纵xml文件来匹配我需要的东西。具体如下代码:
XmlDocument document = new XmlDocument();
document.Load(responseStream);
// set up namespaces
XmlNamespaceManager nsmgr = new XmlNamespaceManager(document.NameTable);
nsmgr.AddNamespace("a", "DAV:");
nsmgr.AddNamespace("b", "urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/");
nsmgr.AddNamespace("c", "xml:");
nsmgr.AddNamespace("d", "urn:schemas:mailheader:");
nsmgr.AddNamespace("e", "urn:schemas:httpmail:");
// Load each response (each mail item) into an object
XmlNodeList responseNodes = document.GetElementsByTagName("a:response");
foreach (XmlNode responseNode in responseNodes)
{
// get the <propstat> node that contains valid HTTP responses
XmlNode uriNode = responseNode.SelectSingleNode("child::a:href", nsmgr);
XmlNode propstatNode = responseNode.SelectSingleNode("descendant::a:propstat[a:status='HTTP/1.1 200 OK']", nsmgr);
if (propstatNode != null)
{
// read properties of this response, and load into a data object
XmlNode fromNode = propstatNode.SelectSingleNode("descendant::d:from", nsmgr);
XmlNode descNode = propstatNode.SelectSingleNode("descendant::e:textdescription", nsmgr);
// make new data object
model.Mail mail = new model.Mail();
if (uriNode != null)
mail.Uri = uriNode.InnerText;
if (fromNode != null)
mail.From = fromNode.InnerText;
if (descNode != null)
mail.Body = descNode.InnerText;
unreadMail.Add(mail);
}
}
是否有像urn:schemas:httpmail:subject或类似的东西,我可以拉出主题?我非常非常新的webDAV - 这是我被告知与Exchange服务器交互的方式,所以如果有人可以阐明如何修改上面的代码来添加主题节点和为什么 - 我相信我可以弄清楚如何进一步修改它以满足我的需求。
所以,为了清楚起见,我的问题是:
如何修改上述代码段以包含从Exchange服务器中提取的电子邮件的主题行?