XmlFormattingInfo ClassFormatC Syntax Highlighting Class Library
Provides formatting info for XML documents.
Inheritance Hierarchy

OnlineSystem Object
  Ookii.FormatC XmlFormattingInfo

Namespace: Ookii.FormatC
Assembly: Ookii.FormatC (in Ookii.FormatC.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax

public class XmlFormattingInfo : IFormattingInfo
Remarks

Because the XML formatter is regular expression based, it has some limitations.

The most important is that use of the > character as text (not part of an XML tag) is not handled correctly. If the > character occurs within an attribute value, any further attributes of that element will not be colored correctly. If the > character occurs in the text content of the document, it will be colored as an element delimiter.

To avoid these issues, we recommend that you encode the > character as > in XML documents that you wish to process with FormatC.

Thread Safety

Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.
See Also