Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IXsltContextVariable.cs « System.Xml.Xsl « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f1b4aa0f3b9bd443044a01bb1f89c5e32ceed634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// System.Xml.Xsl.IXsltContextVariable
//
// Author: Tim Coleman <tim@timcoleman.com>
// (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
	}
}