DataBinder.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //
  2. // System.Web.UI.DataBinder.cs
  3. //
  4. // Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc.
  7. //
  8. using System;
  9. namespace System.Web.UI {
  10. public sealed class DataBinder
  11. {
  12. public DataBinder ()
  13. {
  14. }
  15. [MonoTODO]
  16. public static object Eval (object container, string expression)
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. [MonoTODO]
  21. public static string Eval (object container, string expression, string format)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. public static object GetIndexedPropertyValue (object container, string expr)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. [MonoTODO]
  31. public static string GetIndexedPropertyValue (object container, string expr, string format)
  32. {
  33. throw new NotImplementedException ();
  34. }
  35. [MonoTODO]
  36. public static object GetPropertyValue (object container, string propName)
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. public static string GetPropertyValue (object container, string propName, string format)
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. }
  46. }