MultiPartWriter.cs 508 B

12345678910111213141516171819202122232425
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.UI.MobileControls.Adapters
  4. * Class : MultiPartWriter
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2003 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. using System;
  11. using System.Web.Mobile;
  12. using System.Web.UI;
  13. using System.IO;
  14. namespace System.Web.UI.MobileControls.Adapters
  15. {
  16. public class MultiPartWriter : HtmlTextWriter
  17. {
  18. public MultiPartWriter(TextWriter writer) : base(writer)
  19. {
  20. throw new NotImplementedException();
  21. }
  22. }
  23. }