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

XPathDocument.cs « System.Xml.XPath « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3b8c18401f2b3f4cc41e9f02a76e714c0fb67e9 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//
// System.Xml.XPath.XPathDocument
//
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// (C) Copyright 2002 Tim Coleman
//

using System.IO;

namespace System.Xml.XPath
{
	public class XPathDocument : IXPathNavigable
	{
		#region Constructors

		[MonoTODO]
		public XPathDocument (Stream stream)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public XPathDocument (string uri)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public XPathDocument (TextReader reader)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public XPathDocument (XmlReader reader)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public XPathDocument (string uri, XmlSpace space)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public XPathDocument (XmlReader reader, XmlSpace space)
		{
			throw new NotImplementedException ();
		}

		#endregion

		#region Methods

		[MonoTODO]
		public XPathNavigator CreateNavigator ()
		{
			throw new NotImplementedException ();
		}
		
		#endregion
	}
}