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

Applies template rules with the specified initial mode to the specified context node and outputs all result documents using an object implementing the IResultDocumentHandlerIResultDocumentHandlerIResultDocumentHandler interface.

Syntax

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

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.

resultDocumentHandler

Type: XmlPrime.IResultDocumentHandlerXmlPrime.IResultDocumentHandlerXmlPrime::IResultDocumentHandler^

The result document handler.

Exceptions

ExceptionCondition
ArgumentNullExceptionArgumentNullExceptionArgumentNullException initialModeLocalName, initialModeNamespace, contextNode or resultDocumentHandler 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 suitable for use with multiple result documents.