| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // System.Web.UI.PageParser
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- using System;
- using System.IO;
- namespace System.Web.UI
- {
- public sealed class LosFormatter
- {
- [MonoTODO]
- public LosFormatter ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public object Deserialize (Stream stream)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public object Deserialize (TextReader input)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public object Deserialize (string input)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Serialize (Stream stream, object value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Serialize (TextWriter output, object value)
- {
- throw new NotImplementedException ();
- }
- }
- }
|