Implements an XmlWriter that turns the first letter of outgoing elements and attributes into lowercase.

Namespace: Mvp.Xml.Common
Assembly: Mvp.Xml (in Mvp.Xml.dll)

Syntax

Visual Basic (Declaration)
Public Class XmlFirstLowerWriter
    Inherits XmlTextWriter
C#
public class XmlFirstLowerWriter : XmlTextWriter
C++
ref class XmlFirstLowerWriter : XmlTextWriter
J#
public class XmlFirstLowerWriter extends XmlTextWriter
JScript
public class XmlFirstLowerWriter extends XmlTextWriter

Remarks

To be used in conjunction with XmlFirstUpperReader.

Author: Daniel Cazzulino, kzu.net@gmail.com

See http://weblogs.asp.net/cazzu/archive/2004/05/10/129106.aspx.

Inheritance Hierarchy

System.Object
   System.Xml.XmlWriter
      System.Xml.XmlTextWriter
         Mvp.Xml.Common.XmlFirstLowerWriter

Thread Safety

Public static (Shared in Visual Basic)staticShared members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

See Also