Map.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //
  2. // System.Data.Mapping.Map
  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 Map
  13. {
  14. #region Properties
  15. [MonoTODO]
  16. public MappingAccess Access {
  17. get { throw new NotImplementedException (); }
  18. }
  19. [MonoTODO]
  20. public Field ContentsMap {
  21. get { throw new NotImplementedException (); }
  22. }
  23. [MonoTODO]
  24. public FieldMapCollection FieldMaps {
  25. get { throw new NotImplementedException (); }
  26. }
  27. [MonoTODO]
  28. public Field OverflowMap {
  29. get { throw new NotImplementedException (); }
  30. }
  31. [MonoTODO]
  32. public MappingSchema OwnerMappingSchema {
  33. get { throw new NotImplementedException (); }
  34. }
  35. [MonoTODO]
  36. public Variable SourceVariable {
  37. get { throw new NotImplementedException (); }
  38. }
  39. [MonoTODO]
  40. public string TargetSelect {
  41. get { throw new NotImplementedException (); }
  42. }
  43. [MonoTODO]
  44. public IDomainStructure TargetStructure {
  45. get { throw new NotImplementedException (); }
  46. }
  47. #endregion // Properties
  48. }
  49. }
  50. #endif // NET_1_2