DataBoundLiteralControl.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //
  2. // System.Web.UI.DataBoundLiteralCOntrol.cs
  3. //
  4. // Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc.
  7. //
  8. using System;
  9. using System.Web.UI;
  10. namespace System.Web.UI {
  11. public sealed class DataBoundLiteralControl : Control
  12. {
  13. public DataBoundLiteralControl (int staticLiteralsCount,
  14. int dataBOundLiteralCount)
  15. {
  16. }
  17. [MonoTODO]
  18. public string Text {
  19. get { return String.Empty; }
  20. }
  21. [MonoTODO]
  22. protected override ControlCollection CreateControlCollection ()
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. protected override void LoadViewState (object savedState)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. protected override void Render (HtmlTextWriter output)
  31. {
  32. throw new NotImplementedException ();
  33. }
  34. protected override object SaveViewState ()
  35. {
  36. throw new NotImplementedException ();
  37. }
  38. public void SetDataBoundString (int index, string s)
  39. {
  40. throw new NotImplementedException ();
  41. }
  42. public void SetStaticString (int index, string s)
  43. {
  44. throw new NotImplementedException ();
  45. }
  46. }
  47. }