| 
        public interface IXsltContextVariable
       | 
| IsLocal | Read-only Gets a value indicating whether the variable is local. | 
| IsParam | Read-only Gets a value indicating whether the variable is an Extensible Stylesheet Language Transformation (XSLT) parameter. This can be a parameter to a stylesheet or a template. | 
| VariableType | Read-only Gets the XPathResultType representing the XPath type of the variable. | 
| Evaluate | Evaluates the variable at runtime and returns an object that represents the value of the variable. | 
| 
            bool IsLocal {get;}
           | 
| 
            bool IsParam {get;}
           | 
| 
            XPathResultType VariableType {get;}
           | 
| 
            object Evaluate( | 
xsltContext