DataSource.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //
  2. // System.Data.Mapping.DataSource
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System.Data.SqlXml;
  11. namespace System.Data.Mapping {
  12. public class DataSource
  13. {
  14. #region Properties
  15. [MonoTODO]
  16. public MappingDirection Direction {
  17. get { throw new NotImplementedException (); }
  18. }
  19. [MonoTODO]
  20. public string Name {
  21. get { throw new NotImplementedException (); }
  22. }
  23. [MonoTODO]
  24. public MappingSchema OwnerMappingSchema {
  25. get { throw new NotImplementedException (); }
  26. }
  27. [MonoTODO]
  28. public RelationshipCollection Relationships {
  29. get { throw new NotImplementedException (); }
  30. }
  31. [MonoTODO]
  32. public IDomainSchema Schema {
  33. get { throw new NotImplementedException (); }
  34. }
  35. [MonoTODO]
  36. public string SourceUri {
  37. get { throw new NotImplementedException (); }
  38. }
  39. [MonoTODO]
  40. public MappingDataSourceType Type {
  41. get { throw new NotImplementedException (); }
  42. }
  43. [MonoTODO]
  44. public VariableCollection Variables {
  45. get { throw new NotImplementedException (); }
  46. }
  47. [MonoTODO]
  48. public bool WriteInline {
  49. get { throw new NotImplementedException (); }
  50. }
  51. #endregion // Properties
  52. }
  53. }
  54. #endif // NET_1_2