| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- //
- // System.Web.UI.Design.DesignTimeData
- //
- // Authors:
- // Gert Driesen ([email protected])
- //
- // (C) 2004 Novell
- //
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- namespace System.Web.UI.Design
- {
- public sealed class DesignTimeData
- {
- private DesignTimeData ()
- {
- }
- [MonoTODO]
- public static DataTable CreateDummyDataTable ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static DataTable CreateSampleDataTable (IEnumerable referenceData)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static PropertyDescriptorCollection GetDataFields (IEnumerable dataSource)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static IEnumerable GetDataMember (IListSource dataSource, string dataMember)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static string[] GetDataMembers (object dataSource)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static IEnumerable GetDesignTimeDataSource (DataTable dataTable, int minimumRows)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static object GetSelectedDataSource (IComponent component, string dataSource)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static IEnumerable GetSelectedDataSource (IComponent component, string dataSource, string dataMember)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- private static void OnDataBind (object sender, EventArgs e)
- {
- throw new NotImplementedException ();
- }
- public static readonly EventHandler DataBindingHandler =
- new EventHandler (DesignTimeData.OnDataBind);
- }
- }
|