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

IHasXmlNode.cs « System.Xml « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6eaef10dcfa86c803dd34428653f09794d3c1e6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// System.Xml.IHasXmlNode.cs
//
// Author: Duncan Mak  (duncan@ximian.com)
//
// (C) Ximian, Inc.
//

namespace System.Xml
{
	public interface IHasXmlNode
	{
		XmlNode GetNode ();
	}
}