Xslt.ApplyTemplates Method (XmlQualifiedName, XmlReader, Stream)Xslt.ApplyTemplates Method (XmlQualifiedName, XmlReader, Stream)Xslt::ApplyTemplates Method (XmlQualifiedName^, XmlReader^, Stream^)

Applies template rules with the specified initial mode to the specified input document and outputs the primary result document to a StreamStreamStream.

Syntax

Public Sub ApplyTemplates( _
    initialMode As System.Xml.XmlQualifiedName, _
    input As System.Xml.XmlReader, _
    resultDocument As System.IO.Stream _
)
public void ApplyTemplates(
    System.Xml.XmlQualifiedName initialMode,
    System.Xml.XmlReader input,
    System.IO.Stream resultDocument
)
public:
void ApplyTemplates(
    System.Xml::XmlQualifiedName^ initialMode, 
    System.Xml::XmlReader^ input, 
    System.IO::Stream^ resultDocument
)
 

Parameters

initialMode

Type: System.Xml.XmlQualifiedNameSystem.Xml.XmlQualifiedNameSystem.Xml::XmlQualifiedName^

The initial mode.

input

Type: System.Xml.XmlReaderSystem.Xml.XmlReaderSystem.Xml::XmlReader^

The XmlReaderXmlReaderXmlReader containing the input document.

resultDocument

Type: System.IO.StreamSystem.IO.StreamSystem.IO::Stream^

The StreamStreamStream to which the primary result document will be written.

Exceptions

ExceptionCondition
ArgumentNullExceptionArgumentNullExceptionArgumentNullException initialMode, input or resultDocument is null a null reference (Nothing in Visual Basic) nullptr.
XdmExceptionXdmExceptionXdmExceptionRaised if a non-recoverable error is encountered.

Remarks

The default mode may be specified by passing EmptyEmptyEmpty for initialMode.

This method is unsuitable for use with multiple result documents.