Name

XsltArgumentList

Synopsis

The XsltArgumentList class constructs lists of parameters and node fragment objects that can be called from stylesheets. This type is called as the second argument to the Transform() method of XslTransform. Parameters are associated with namespace-qualified names, and objects are associated with their namespace URIs.

The XsltArgumentList can also be used to bind functions and variables into the XSLT engine’s execution space — commonly called the XSLT context — for use by the XSLT stylesheet during processing.

Public NotInheritable Class XsltArgumentList
                  ' Public Constructors
   Public Sub New() 
' Public Instance Methods
   Public Sub AddExtensionObject(ByVal namespaceUri As String, 
        ByVal extension As Object) 
   Public Sub AddParam(ByVal name As String, 
        ByVal namespaceUri As String, 
        ByVal parameter As Object) 
   Public Sub Clear() 
   Public Function GetExtensionObject(
        ByVal namespaceUri As String) As Object  
   Public Function GetParam(ByVal name As String, 
        ByVal namespaceUri As String) As Object  
   Public Function RemoveExtensionObject(
        ByVal namespaceUri As String) As Object  
   Public Function RemoveParam(ByVal name As String, 
        ByVal namespaceUri As String) As Object  
End Class

Passed To

XslTransform.Transform()

Get VB.NET Core Classes in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.