DesignTimeData.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. //
  2. // System.Web.UI.Design.DesignTimeData
  3. //
  4. // Authors:
  5. // Gert Driesen ([email protected])
  6. //
  7. // (C) 2004 Novell
  8. //
  9. using System.Collections;
  10. using System.ComponentModel;
  11. using System.Data;
  12. namespace System.Web.UI.Design
  13. {
  14. public sealed class DesignTimeData
  15. {
  16. private DesignTimeData ()
  17. {
  18. }
  19. [MonoTODO]
  20. public static DataTable CreateDummyDataTable ()
  21. {
  22. throw new NotImplementedException ();
  23. }
  24. [MonoTODO]
  25. public static DataTable CreateSampleDataTable (IEnumerable referenceData)
  26. {
  27. throw new NotImplementedException ();
  28. }
  29. [MonoTODO]
  30. public static PropertyDescriptorCollection GetDataFields (IEnumerable dataSource)
  31. {
  32. throw new NotImplementedException ();
  33. }
  34. [MonoTODO]
  35. public static IEnumerable GetDataMember (IListSource dataSource, string dataMember)
  36. {
  37. throw new NotImplementedException ();
  38. }
  39. [MonoTODO]
  40. public static string[] GetDataMembers (object dataSource)
  41. {
  42. throw new NotImplementedException ();
  43. }
  44. [MonoTODO]
  45. public static IEnumerable GetDesignTimeDataSource (DataTable dataTable, int minimumRows)
  46. {
  47. throw new NotImplementedException ();
  48. }
  49. [MonoTODO]
  50. public static object GetSelectedDataSource (IComponent component, string dataSource)
  51. {
  52. throw new NotImplementedException ();
  53. }
  54. [MonoTODO]
  55. public static IEnumerable GetSelectedDataSource (IComponent component, string dataSource, string dataMember)
  56. {
  57. throw new NotImplementedException ();
  58. }
  59. [MonoTODO]
  60. private static void OnDataBind (object sender, EventArgs e)
  61. {
  62. throw new NotImplementedException ();
  63. }
  64. public static readonly EventHandler DataBindingHandler =
  65. new EventHandler (DesignTimeData.OnDataBind);
  66. }
  67. }