A markup stream writer provides methods for writing rich structured text with embedded attachments, nested sections and hidden semantic markers to a particular stream within a markup document writer.

Namespace:  Gallio.Common.Markup
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.459.0)

Syntax

C#
public class MarkupStreamWriter : TextWriter
Visual Basic (Declaration)
Public Class MarkupStreamWriter _
	Inherits TextWriter

Remarks

The operations on this interface are thread-safe.

The object extends MarshalByRefObject so instances may be accessed by remote clients if required.

Newlines are always normalized to LFs ('\n') only. Any CRs ('\r') that are written are automatically stripped.

Inheritance Hierarchy

System..::.Object
  System..::.MarshalByRefObject
    System.IO..::.TextWriter
      Gallio.Common.Markup..::.MarkupStreamWriter
        Gallio.Common.Markup..::.StructuredTextWriter

See Also