Xslt.CallTemplate Method (string, string, XmlReader, TextWriter)Xslt.CallTemplate Method (String, String, XmlReader, TextWriter)Xslt::CallTemplate Method (String^, String^, XmlReader^, TextWriter^)

Calls the specified named template with the specified initial context node and outputs the primary result document to a TextWriterTextWriterTextWriter.

Syntax

Public Sub CallTemplate( _
    initialTemplateLocalName As String, _
    initialTemplateNamespace As String, _
    input As System.Xml.XmlReader, _
    resultDocument As System.IO.TextWriter _
)
public void CallTemplate(
    string initialTemplateLocalName,
    string initialTemplateNamespace,
    System.Xml.XmlReader input,
    System.IO.TextWriter resultDocument
)
public:
void CallTemplate(
    String^ initialTemplateLocalName, 
    String^ initialTemplateNamespace, 
    System.Xml::XmlReader^ input, 
    System.IO::TextWriter^ resultDocument
)
 

Parameters

initialTemplateLocalName

Type: System.StringSystem.StringSystem::String^

The local name of the initial template.

initialTemplateNamespace

Type: System.StringSystem.StringSystem::String^

The namespace URI of the initial template.

input

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

The XmlReaderXmlReaderXmlReader containing the input document.

resultDocument

Type: System.IO.TextWriterSystem.IO.TextWriterSystem.IO::TextWriter^

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

Exceptions

ExceptionCondition
ArgumentNullExceptionArgumentNullExceptionArgumentNullException initialTemplateLocalName, initialTemplateNamespace, 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.