只读System.Xml.XmlElement

时间:2012-08-13 11:02:29

标签: .net xml

是否可以轻松返回只读System.Xml.XmlElement,以便无法修改其属性和子项?

我建议应该使用XmlNode.IsReadOnly。 例如,

System.Xml.XmlElement xml = ...;
//this line does not compile because the IsReadOnly property is read only
xml.IsReadOnly = true; 
return xml;

1 个答案:

答案 0 :(得分:0)

不,你必须将它包装在你自己的类/结构中以暴露这种行为。