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.XPath/XPathExpression.cs')
-rw-r--r--mcs/class/System.XML/System.Xml.XPath/XPathExpression.cs50
1 files changed, 0 insertions, 50 deletions
diff --git a/mcs/class/System.XML/System.Xml.XPath/XPathExpression.cs b/mcs/class/System.XML/System.Xml.XPath/XPathExpression.cs
deleted file mode 100644
index 4d525b36e02..00000000000
--- a/mcs/class/System.XML/System.Xml.XPath/XPathExpression.cs
+++ /dev/null
@@ -1,50 +0,0 @@
-//
-// System.Xml.XPath.XPathExpression
-//
-// Author:
-// Jason Diamond (jason@injektilo.org)
-//
-// (C) 2002 Jason Diamond http://injektilo.org/
-//
-
-using System.Collections;
-
-namespace System.Xml.XPath
-{
- public abstract class XPathExpression
- {
- #region Constructor
-
- internal XPathExpression ()
- {
- }
-
- #endregion
-
- #region Properties
-
- public abstract string Expression { get; }
-
- public abstract XPathResultType ReturnType { get; }
-
- #endregion
-
- #region Methods
-
- public abstract void AddSort (object expr, IComparer comparer);
-
- public abstract void AddSort (
- object expr,
- XmlSortOrder order,
- XmlCaseOrder caseOrder,
- string lang,
- XmlDataType dataType
- );
-
- public abstract XPathExpression Clone ();
-
- public abstract void SetContext (XmlNamespaceManager nsManager);
-
- #endregion
- }
-}