Field.cs 652 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // System.Data.Mapping.Field
  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 Field
  13. {
  14. #region Properties
  15. [MonoTODO]
  16. public IDomainField DomainField {
  17. get { throw new NotImplementedException (); }
  18. }
  19. [MonoTODO]
  20. public string Name {
  21. get { throw new NotImplementedException (); }
  22. }
  23. [MonoTODO]
  24. public Variable OwnerVariable {
  25. get { throw new NotImplementedException (); }
  26. }
  27. #endregion // Properties
  28. }
  29. }
  30. #endif // NET_1_2