// // System.Xml.Serialization.XmlReflectionImporter // // Author: // Tim Coleman (tim@timcoleman.com) // // Copyright (C) Tim Coleman, 2002 // using System.Reflection; namespace System.Xml.Serialization { public class XmlReflectionImporter { #region Constructors [MonoTODO] public XmlReflectionImporter () { throw new NotImplementedException (); } [MonoTODO] public XmlReflectionImporter (string defaultNamespace) { throw new NotImplementedException (); } [MonoTODO] public XmlReflectionImporter (XmlAttributeOverrides attributeOverrides) { throw new NotImplementedException (); } [MonoTODO] public XmlReflectionImporter (XmlAttributeOverrides attributeOverrides, string defaultNamespace) { throw new NotImplementedException (); } #endregion // Constructors #region Methods [MonoTODO] public XmlMembersMapping ImportMembersMapping (string elementName, string ns, XmlReflectionMember[] members, bool hasWrapperElement) { throw new NotImplementedException (); } [MonoTODO] public XmlTypeMapping ImportTypeMapping (Type type) { throw new NotImplementedException (); } [MonoTODO] public XmlTypeMapping ImportTypeMapping (Type type, string defaultNamespace) { throw new NotImplementedException (); } [MonoTODO] public XmlTypeMapping ImportTypeMapping (Type type, XmlRootAttribute group) { throw new NotImplementedException (); } [MonoTODO] public XmlTypeMapping ImportTypeMapping (Type type, XmlRootAttribute group, string defaultNamespace) { throw new NotImplementedException (); } [MonoTODO] public void IncludeType (Type type) { throw new NotImplementedException (); } [MonoTODO] public void IncludeTypes (ICustomAttributeProvider provider) { throw new NotImplementedException (); } #endregion // Methods } }