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

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

Syntax

Public Sub ApplyTemplates( _
    initialModeLocalName As String, _
    initialModeNamespace As String, _
    contextNode As System.Xml.XPath.IXPathNavigable, _
    resultDocument As System.Xml.XmlWriter _
)
public void ApplyTemplates(
    string initialModeLocalName,
    string initialModeNamespace,
    System.Xml.XPath.IXPathNavigable contextNode,
    System.Xml.XmlWriter resultDocument
)
public:
void ApplyTemplates(
    String^ initialModeLocalName, 
    String^ initialModeNamespace, 
    System.Xml.XPath::IXPathNavigable^ contextNode, 
    System.Xml::XmlWriter^ 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.Xml.XmlWriterSystem.Xml.XmlWriterSystem.Xml::XmlWriter^

The XmlWriterXmlWriterXmlWriter to which you want to output.

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.