2
0

FieldMap.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. //
  2. // System.Data.Mapping.FieldMap
  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 FieldMap
  13. {
  14. #region Properties
  15. [MonoTODO]
  16. public string NullValue {
  17. get { throw new NotImplementedException (); }
  18. }
  19. [MonoTODO]
  20. public Map OwnerMap {
  21. get { throw new NotImplementedException (); }
  22. }
  23. [MonoTODO]
  24. public string SourceConstant {
  25. get { throw new NotImplementedException (); }
  26. }
  27. [MonoTODO]
  28. public Field SourceField {
  29. get { throw new NotImplementedException (); }
  30. }
  31. [MonoTODO]
  32. public MappingParameter SourceParameter {
  33. get { throw new NotImplementedException (); }
  34. }
  35. [MonoTODO]
  36. public MappingArgumentType SourceType {
  37. get { throw new NotImplementedException (); }
  38. }
  39. [MonoTODO]
  40. public string TargetConstant {
  41. get { throw new NotImplementedException (); }
  42. }
  43. [MonoTODO]
  44. public IDomainField TargetDomainField {
  45. get { throw new NotImplementedException (); }
  46. }
  47. [MonoTODO]
  48. public MappingParameter TargetParameter {
  49. get { throw new NotImplementedException (); }
  50. }
  51. [MonoTODO]
  52. public MappingArgumentType TargetType {
  53. get { throw new NotImplementedException (); }
  54. }
  55. [MonoTODO]
  56. public bool UseForConcurrency {
  57. get { throw new NotImplementedException (); }
  58. }
  59. [MonoTODO]
  60. public MappingAccess UseNull {
  61. get { throw new NotImplementedException (); }
  62. }
  63. #endregion // Properties
  64. }
  65. }
  66. #endif // NET_1_2