DataSourceHelper.cs 751 B

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.Mobile.Util
  4. * Class : DataSourceHelper
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2003 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. using System.Collections;
  11. using System.Web.UI;
  12. using System.Web.Mobile;
  13. using System.Web.UI.MobileControls;
  14. namespace System.Web.Mobile.Util
  15. {
  16. internal class DataSourceHelper
  17. {
  18. private DataSourceHelper()
  19. {
  20. }
  21. [MonoTODO("Have_to_see_how_I_did_in_WebControls")]
  22. public static IEnumerable GetResolvedDataSource(object dataSource,
  23. string dataMember)
  24. {
  25. IEnumerable retVal = null;
  26. if(dataSource != null)
  27. {
  28. throw new NotImplementedException();
  29. }
  30. return retVal;
  31. }
  32. }
  33. }