为了账号安全,请及时绑定邮箱和手机立即绑定

将 XmlDocument 保存到 Azure Blob 存储

将 XmlDocument 保存到 Azure Blob 存储

C#
白衣染霜花 2022-01-15 16:45:18
我正在使用一个XmlDocument对象。当我将 xml 文件保存到 Azure blob 存储时,它是成功的。但是当我尝试从 Azure 下载它时,内容只显示“ System.Xml.XmlDocument.”。我究竟做错了什么?这是我的代码:XmlDocument doc = new XmlDocument();// ...content of doc omitted for brevityusing (Stream stream = new MemoryStream(Encoding.UTF8.GetBytes(doc.ToString()))){    try    {        log.Info("Attempting to save file " + filename + " to: " + containerName);        blob.UploadFromStream(stream);    }    catch (Exception ex)    {        log.Error("Error uploading file. " + ex.Message + " " + ex.InnerException);    };}
查看完整描述

1 回答

?
紫衣仙女

TA贡献1839条经验 获得超15个赞

doc.ToString() 只返回对象的类型名称。

你想要 OuterXml


查看完整回答
反对 回复 2022-01-15
  • 1 回答
  • 0 关注
  • 132 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信