| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- //
- // XmlSchemaSet.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- // (C)2003 Atsushi Enomoto
- //
- #if NET_1_2
- using System;
- using System.Collections;
- using System.Collections.Specialized;
- using System.ComponentModel;
- using System.IO;
- using System.Security.Policy;
- using System.Xml.Schema;
- using System.Xml.XPath;
- namespace System.Xml.Schema
- {
- public class XmlSchemaSet
- {
- public int Count {
- get { throw new NotImplementedException (); }
- }
- public XmlSchemaObjectTable GlobalAttributes {
- get { throw new NotImplementedException (); }
- }
- public XmlSchemaObjectTable GlobalElements {
- get { throw new NotImplementedException (); }
- }
- public XmlSchemaObjectTable GlobalTypes {
- get { throw new NotImplementedException (); }
- }
- public bool IsCompiled {
- get { throw new NotImplementedException (); }
- }
- public XmlNameTable NameTable {
- get { throw new NotImplementedException (); }
- }
- public XmlResolver XmlResolver {
- set { throw new NotImplementedException (); }
- }
- public XmlSchema Add (string targetNamespace, string url)
- {
- throw new NotImplementedException ();
- }
- public XmlSchema Add (string targetNamespace, XmlReader reader)
- {
- throw new NotImplementedException ();
- }
- public void Add (XmlSchemaSet schemaSet)
- {
- throw new NotImplementedException ();
- }
- public XmlSchema Add (XmlSchema schema)
- {
- throw new NotImplementedException ();
- }
- public void Compile ()
- {
- throw new NotImplementedException ();
- }
- public bool Contains (string targetNamespace)
- {
- throw new NotImplementedException ();
- }
- public bool Contains (XmlSchema targetNamespace)
- {
- throw new NotImplementedException ();
- }
- public void CopyTo (XmlSchema[] array, int index)
- {
- throw new NotImplementedException ();
- }
- public XmlSchema Remove (XmlSchema schema)
- {
- throw new NotImplementedException ();
- }
- public ArrayList Schemas ()
- {
- throw new NotImplementedException ();
- }
- public ArrayList Schemas (string targetNamespace)
- {
- throw new NotImplementedException ();
- }
- public XmlSchemaSet ()
- {
- throw new NotImplementedException ();
- }
- public XmlSchemaSet (XmlNameTable nameTable)
- {
- throw new NotImplementedException ();
- }
- }
- }
- #endif
|