| 123456789101112131415161718192021222324252627 |
- // System.Xml.Xsl.IXsltContextVariable
- //
- // Author: Tim Coleman <[email protected]>
- // (C) Copyright 2002 Tim Coleman
- using System;
- using System.Xml.XPath;
- namespace System.Xml.Xsl
- {
- public interface IXsltContextVariable
- {
- #region Properties
- bool IsLocal { get; }
- bool IsParam { get; }
- XPathResultType VariableType { get; }
- #endregion
- #region Methods
- object Evaluate (XsltContext xsltContext);
- #endregion
- }
- }
|