IXsltContextVariable.cs 464 B

123456789101112131415161718192021222324252627
  1. // System.Xml.Xsl.IXsltContextVariable
  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 IXsltContextVariable
  10. {
  11. #region Properties
  12. bool IsLocal { get; }
  13. bool IsParam { get; }
  14. XPathResultType VariableType { get; }
  15. #endregion
  16. #region Methods
  17. object Evaluate (XsltContext xsltContext);
  18. #endregion
  19. }
  20. }