有同样快速的替代 SecurityElement.Escape(string) 来转义 XML 特殊字符吗?

发布于 2024-10-19 17:36:20 字数 572 浏览 2 评论 0原文

我遇到了这个 SecurityElement.Escape(string) 方法来转义字符串中的特殊 XML 字符,但是考虑到我只是使用通用的 System.Xml 命名空间和基本的 XML 字符串,与安全无关。

它转换以下特殊 XML 字符。

< to &lt;
> to &gt;
" to &quot;
' to &apos;
& to &amp;

XML 命名空间内是否存在同样快速的静态方法调用来转义这些字符,而不使用 XmlReader、XmlDocument 等更高级别的类?

I ran across this SecurityElement.Escape(string) method to escape special XML characters in a String, however it seems to be oddly placed in the Security namespace considering I'm just using the generic System.Xml namespace and a basic String of XML, not really security related.

It converts the following special XML characters.

< to <
> to >
" to "
' to '
& to &

Is there an equally quick static method call somewhere inside the XML namespace for escaping these characters, without using higher level classes like XmlReader, XmlDocument, etc?

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

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

发布评论

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

评论(1

誰ツ都不明白 2024-10-26 17:36:20

以下是对这些选项的一个很好的总结:

转义 XML 的不同方法

A good summary of the options is in the following:

Different ways to escape XML

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