| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- //
- // System.Xml.Serialization.XmlSchemaImporter
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Xml;
- namespace System.Xml.Serialization {
- public class XmlSchemaImporter {
- #region Fields
- XmlSchemas schemas;
- CodeIdentifiers typeIdentifiers;
- #endregion
- #region Constructors
- public XmlSchemaImporter (XmlSchemas schemas)
- {
- this.schemas = schemas;
- }
- public XmlSchemaImporter (XmlSchemas schemas, CodeIdentifiers typeIdentifiers)
- : this (schemas)
- {
- this.typeIdentifiers = typeIdentifiers;
- }
- #endregion // Constructors
- #region Methods
- [MonoTODO]
- public XmlMembersMapping ImportAnyType (XmlQualifiedName typeName, string elementName)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XmlTypeMapping ImportDerivedTypeMapping (XmlQualifiedName name, Type baseType)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XmlTypeMapping ImportDerivedTypeMapping (XmlQualifiedName name, bool baseTypeCanBeIndirect)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XmlTypeMapping ImportDerivedTypeMapping (XmlQualifiedName name,
- Type baseType,
- bool baseTypeCanBeIndirect)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XmlMembersMapping ImportMembersMapping (XmlQualifiedName name)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XmlMembersMapping ImportMembersMapping (XmlQualifiedName[] names)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XmlMembersMapping ImportMembersMapping (XmlQualifiedName[] names, Type baseType, bool baseTypeCanBeIndirect)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XmlTypeMapping ImportTypeMapping (XmlQualifiedName name)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|