Ricardo Peres
Ricardo Peres

Reputation: 14535

Extensions Functions From POCO Classes In Saxon-HE For .NET

The built-in .NET XsltArgumentList allows us to register POCO classes containing methods that will be available as XSLT functions. Is there a similar mechanism for Saxon-HE? I know about ExtensionFunctionDefinition and ExtensionFunctionCall, but this is not quite the same.

Upvotes: 0

Views: 75

Answers (1)

Michael Kay
Michael Kay

Reputation: 163342

The nearest equivalent is "reflexive extension functions", described here:

http://www.saxonica.com/documentation/#!extensibility/dotnetextensions

But this requires Saxon-PE or higher.

Upvotes: 1

Related Questions