Boolean flag used to specify whether multiple output (via exsl:document) is supported. Note: This property is ignored (hence multiple output is not supported) when transformation is done to XmlReader or XmlWriter (use overloaded method, which transforms to MultiXmlTextWriter instead). Note: Because of some restrictions and slight overhead this feature is disabled by default. If you need multiple output support, set this property to true before the Transform() call.

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

Syntax

Visual Basic (Declaration)
Public Property MultiOutput As Boolean
C#
public bool MultiOutput { get; set; }
C++
public property bool MultiOutput sealed  {
    bool get();
    void set(bool value);
}
J#
/** property */
public bool get_MultiOutput();

/** property */
public void set_MultiOutput(bool value);
JScript
public function get MultiOutput() : bool

public function set MultiOutput(value : bool);

See Also