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

XmlNameTable.cs « System.Xml « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7de896f0fc41d8a6bf438a87f5cf66755953d7f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
//
// System.Xml.XmlNameTable.cs
//
// Author:
//   Jason Diamond (jason@injektilo.org)
//
// (C) 2001 Jason Diamond  http://injektilo.org/
//

namespace System.Xml
{
	public abstract class XmlNameTable
	{
		public abstract string Add (string name);
		public abstract string Add (char [] buffer, int offset, int length);
		public abstract string Get (string name);
		public abstract string Get (char [] buffer, int offset, int length);
	}
}