C Sharp 使用 HTML 实体序列化 XML

发布于 2024-09-10 23:12:06 字数 175 浏览 4 评论 0原文

我在数据库中有一个包含尖括号(小于/大于)的字符串。我需要将字符串插入到 XElement 中,然后将其序列化到客户端设备。现在 html 实体显然已被编码,因此括号显示为 <和>最好的方法可能是使用 HttpUtility.HtmlDecode 将实体解码回客户端设备。但我想知道是否有办法转义编码并让这些实体按原样发送?

I have a string in the database which contains angle brackets (less-than/greater-than). I need to insert the string into an XElement and then serialise it to a client device. Now the html entities obviously get encoded so the brackets appear as < and > and the best way may be is to use the HttpUtility.HtmlDecode to decode the entities back on the client device. But I am wondering is there anyway to escape the encoding and have these entities send as is?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

忆伤 2024-09-17 23:12:06

如果您设置 XElement.Value 属性,是的,它将在序列化时进行编码。但是,当您在客户端上反序列化它并访问 XElement.Value 属性时,它将是未编码的。请参阅此快速示例:

var htmlData = "<some data>";
XElement element = new XElement("data");
element.Value = htmlData;

var xml = element.ToString();
var data = element.Value;
if (data != htmlData)
    throw new NotImplementedException("this didn't work");

如果设置断点,您将看到变量“xml”确实包含编码的 html 字符串。

If you set the XElement.Value property, yes, it will be encoded when it's serialized. But when you deserialize it on the client and access the XElement.Value property, it will be unencoded. See this quick sample:

var htmlData = "<some data>";
XElement element = new XElement("data");
element.Value = htmlData;

var xml = element.ToString();
var data = element.Value;
if (data != htmlData)
    throw new NotImplementedException("this didn't work");

If you set a breakpoint, you'll see the variable 'xml' does contain the encoded html string.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文