Xslt.CallTemplate Method (XmlQualifiedName, XmlReader, XmlWriter)Xslt.CallTemplate Method (XmlQualifiedName, XmlReader, XmlWriter)Xslt::CallTemplate Method (XmlQualifiedName^, XmlReader^, XmlWriter^)

Calls the specified named template using the specified input document and outputs the primary result document to an XmlWriterXmlWriterXmlWriter.

Syntax

Public Sub CallTemplate( _
    initialTemplateName As System.Xml.XmlQualifiedName, _
    input As System.Xml.XmlReader, _
    resultDocument As System.Xml.XmlWriter _
)
public void CallTemplate(
    System.Xml.XmlQualifiedName initialTemplateName,
    System.Xml.XmlReader input,
    System.Xml.XmlWriter resultDocument
)
public:
void CallTemplate(
    System.Xml::XmlQualifiedName^ initialTemplateName, 
    System.Xml::XmlReader^ input, 
    System.Xml::XmlWriter^ resultDocument
)
 

Parameters

initialTemplateName

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

The name of the initial template.

input

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

The initial context node for the stylesheet.

resultDocument

Type: System.Xml.XmlWriterSystem.Xml.XmlWriterSystem.Xml::XmlWriter^

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

Exceptions

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

Remarks

This method is unsuitable for use with multiple result documents.