HtmlMobileTextWriter.cs 731 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.UI.MobileControls.Adapters
  4. * Class : HtmlMobileTextWriter
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2003 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. using System;
  11. using System.IO;
  12. using System.Web.Mobile;
  13. namespace System.Web.UI.MobileControls.Adapters
  14. {
  15. public class HtmlMobileTextWriter : MobileTextWriter
  16. {
  17. [MonoTODO]
  18. public HtmlMobileTextWriter(TextWriter writer,
  19. MobileCapabilities capabilities)
  20. : base(writer, capabilities)
  21. {
  22. throw new NotImplementedException();
  23. }
  24. [MonoTODO]
  25. public void EnterStyle(System.Web.UI.MobileControls.Style style)
  26. {
  27. throw new NotImplementedException();
  28. }
  29. }
  30. }