有同样快速的替代 SecurityElement.Escape(string) 来转义 XML 特殊字符吗?
我遇到了这个 SecurityElement.Escape(string)
方法来转义字符串中的特殊 XML 字符,但是考虑到我只是使用通用的 System.Xml 命名空间和基本的 XML 字符串,与安全无关。
它转换以下特殊 XML 字符。
< to <
> to >
" to "
' to '
& to &
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是对这些选项的一个很好的总结:
转义 XML 的不同方法
A good summary of the options is in the following:
Different ways to escape XML