| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- //
- // System.Xml.Serialization.XmlReflectionImporter
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // 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
- }
- }
|