| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // XmlQualifiedNameTable.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- //
- #if NET_1_2
- using System;
- using System.Collections;
- namespace System.Xml
- {
- public class XmlQualifiedNameTable
- {
- public XmlQualifiedNameTable (XmlNameTable nt)
- {
- throw new NotImplementedException ();
- }
- public XmlNameTable NameTable {
- get { throw new NotImplementedException (); }
- }
- public XmlQualifiedName Add (string name, string ns)
- {
- throw new NotImplementedException ();
- }
- public XmlQualifiedName AtomizedAdd (string name, string ns)
- {
- throw new NotImplementedException ();
- }
- public XmlQualifiedName AtomizedGet (string name, string ns)
- {
- throw new NotImplementedException ();
- }
- public XmlQualifiedName Get (string name, string ns)
- {
- throw new NotImplementedException ();
- }
- public IEnumerator GetEnumerator()
- {
- throw new NotImplementedException ();
- }
- }
- }
- #endif
|