MappingParameter.cs 915 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // System.Data.Mapping.MappingParameter
  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. using System.Xml.Schema;
  12. namespace System.Data.Mapping {
  13. public class MappingParameter
  14. {
  15. #region Properties
  16. [MonoTODO]
  17. public XmlSchemaBuiltInType DataType {
  18. get { throw new NotImplementedException (); }
  19. }
  20. [MonoTODO]
  21. public string Default {
  22. get { throw new NotImplementedException (); }
  23. }
  24. [MonoTODO]
  25. public string Name {
  26. get { throw new NotImplementedException (); }
  27. }
  28. [MonoTODO]
  29. public string NullValue {
  30. get { throw new NotImplementedException (); }
  31. }
  32. [MonoTODO]
  33. public MappingSchema OwnerMappingSchema {
  34. get { throw new NotImplementedException (); }
  35. }
  36. #endregion // Properties
  37. }
  38. }
  39. #endif // NET_1_2