XmlText Description sealed class Tinman.Core.Xml.XmlText Derived from XmlNode abstract Represents a text value in an XML document. XmlText objects may appear at these places in an XML document: XmlElement.Content XmlLiteral.Content Public / Constants Empty [ShutdownSurvive] public static readonly attribute Empty → (XmlText) An XmlText node for "". False [ShutdownSurvive] public static readonly attribute False → (XmlText) An XmlText node for "false". True [ShutdownSurvive] public static readonly attribute True → (XmlText) An XmlText node for "true". Zero [ShutdownSurvive] public static readonly attribute Zero → (XmlText) An XmlText node for "0". Public / Constructors For [Pure] public static method For → (2) value in : string [not-null] See Value. Starting at the first occurrence of '<' or '&', all remaining characters will be ignored. escape opt : bool = false If set to true, the first occurrence of a control character (i.e. a UTF-16 code unit less than 32) will also skip all remaining ones. returns → XmlText The instance of XmlText. Returns an instance of XmlText for the given value in. Public / Attributes Value [Constant] public attribute Value → (get) value : string [not-null] The text value. The text value. The text value will never contain '<' or '&' characters. XmlStream DemoApplication