Xslt.ApplyTemplates Method (string, string, IXPathNavigable, TextWriter)Xslt.ApplyTemplates Method (String, String, IXPathNavigable, TextWriter)Xslt::ApplyTemplates Method (String^, String^, IXPathNavigable^, TextWriter^)

Applies template rules with the specified initial mode to the specified context node and outputs the primary result document to a TextWriterTextWriterTextWriter.

Syntax

Public Sub ApplyTemplates( _
    initialModeLocalName As String, _
    initialModeNamespace As String, _
    contextNode As System.Xml.XPath.IXPathNavigable, _
    resultDocument As System.IO.TextWriter _
)
public void ApplyTemplates(
    string initialModeLocalName,
    string initialModeNamespace,
    System.Xml.XPath.IXPathNavigable contextNode,
    System.IO.TextWriter resultDocument
)
public:
void ApplyTemplates(
    String^ initialModeLocalName, 
    String^ initialModeNamespace, 
    System.Xml.XPath::IXPathNavigable^ contextNode, 
    System.IO::TextWriter^ resultDocument
)
 

Parameters

initialModeLocalName

Type: System.StringSystem.StringSystem::String^

The local name of the initial mode.

initialModeNamespace

Type: System.StringSystem.StringSystem::String^

The namespace URI of the initial mode.

contextNode

Type: System.Xml.XPath.IXPathNavigableSystem.Xml.XPath.IXPathNavigableSystem.Xml.XPath::IXPathNavigable^

The initial context node for the stylesheet.

resultDocument

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

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

Exceptions

ExceptionCondition
ArgumentNullExceptionArgumentNullExceptionArgumentNullException initialModeLocalName, initialModeNamespace, contextNode 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 initialModeLocalName and initialModeNamespace.

This method is unsuitable for use with multiple result documents.