LosFormatter.cs 898 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // System.Web.UI.PageParser
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc (http://www.ximian.com)
  8. //
  9. using System;
  10. using System.IO;
  11. namespace System.Web.UI
  12. {
  13. public sealed class LosFormatter
  14. {
  15. [MonoTODO]
  16. public LosFormatter ()
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. [MonoTODO]
  21. public object Deserialize (Stream stream)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. public object Deserialize (TextReader input)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. [MonoTODO]
  31. public object Deserialize (string input)
  32. {
  33. throw new NotImplementedException ();
  34. }
  35. [MonoTODO]
  36. public void Serialize (Stream stream, object value)
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. public void Serialize (TextWriter output, object value)
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. }
  46. }