IXsltContextFunction.cs 541 B

12345678910111213141516171819202122232425262728
  1. // System.Xml.Xsl.IXsltContextFunction
  2. //
  3. // Author: Tim Coleman <[email protected]>
  4. // (C) Copyright 2002 Tim Coleman
  5. using System;
  6. using System.Xml.XPath;
  7. namespace System.Xml.Xsl
  8. {
  9. public interface IXsltContextFunction
  10. {
  11. #region Properties
  12. XPathResultType [] ArgTypes { get; }
  13. int Maxargs { get; }
  14. int Minargs { get; }
  15. XPathResultType ReturnType { get; }
  16. #endregion
  17. #region Methods
  18. object Invoke (XsltContext xsltContext, object [] args, XPathNavigator docContext);
  19. #endregion
  20. }
  21. }