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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.XML/System.Xml.Xsl/IXsltContextVariable.cs')
-rw-r--r--mcs/class/System.XML/System.Xml.Xsl/IXsltContextVariable.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/mcs/class/System.XML/System.Xml.Xsl/IXsltContextVariable.cs b/mcs/class/System.XML/System.Xml.Xsl/IXsltContextVariable.cs
deleted file mode 100644
index f1b4aa0f3b9..00000000000
--- a/mcs/class/System.XML/System.Xml.Xsl/IXsltContextVariable.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-// 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
- }
-}