| 12345678910111213141516171819202122232425262728 |
- // System.Xml.Xsl.IXsltContextFunction
- //
- // Author: Tim Coleman <[email protected]>
- // (C) Copyright 2002 Tim Coleman
- using System;
- using System.Xml.XPath;
- namespace System.Xml.Xsl
- {
- public interface IXsltContextFunction
- {
- #region Properties
- XPathResultType [] ArgTypes { get; }
- int Maxargs { get; }
- int Minargs { get; }
- XPathResultType ReturnType { get; }
- #endregion
- #region Methods
- object Invoke (XsltContext xsltContext, object [] args, XPathNavigator docContext);
- #endregion
- }
- }
|