| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- //
- // XmlSerializer.cs:
- //
- // Author:
- // John Donagher ([email protected])
- //
- // (C) 2002 John Donagher
- //
- using System.Xml.Serialization;
- using System.Xml;
- using System.IO;
- using System;
- namespace System.Xml.Serialization
- {
- /// <summary>
- /// Summary description for XmlSerializer.
- /// </summary>
- public class XmlSerializer
- {
- [MonoTODO]
- protected XmlSerializer ()
- {
- }
- [MonoTODO]
- public XmlSerializer (Type type)
- {
- }
- [MonoTODO]
- public XmlSerializer (XmlTypeMapping xmltypemapping)
- {
- }
- [MonoTODO]
- public XmlSerializer (Type type, string defaultNamespace)
- {
- }
- [MonoTODO]
- public XmlSerializer (Type type, Type[] extraTypes)
- {
- }
- [MonoTODO]
- public XmlSerializer (Type type, XmlAttributeOverrides overrides)
- {
- }
- [MonoTODO]
- public XmlSerializer (Type type, XmlRootAttribute root)
- {
- }
- [MonoTODO]
- public XmlSerializer (Type type, XmlAttributeOverrides overrides, Type[] extraTypes, XmlRootAttribute root, string defaultNamespace)
- {
- }
-
- [MonoTODO]
- public event XmlAttributeEventHandler UnknownAttribute;
- [MonoTODO]
- public event XmlElementEventHandler UnknownElement;
- [MonoTODO]
- public event XmlNodeEventHandler UnknownNode;
- [MonoTODO]
- public event UnreferencedObjectEventHandler UnreferencedObject;
-
- [MonoTODO]
- public virtual bool CanDeserialize (XmlReader xmlReader)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual object Deserialize (XmlSerializationReader reader)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public object Deserialize (Stream stream)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public object Deserialize (TextReader textReader)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public object Deserialize (XmlReader xmlReader)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- protected virtual void Serialize (object o, XmlSerializationWriter writer)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Serialize (Stream stream, object o)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Serialize (TextWriter textWriter, object o)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Serialize (XmlWriter xmlWriter, object o)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Serialize (Stream stream, object o, XmlSerializerNamespaces namespaces)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Serialize (TextWriter textWriter, object o, XmlSerializerNamespaces namespaces)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Serialize (XmlWriter xmlWriter, object o, XmlSerializerNamespaces namespaces)
- {
- throw new NotImplementedException ();
- }
- }
- }
|