| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // System.Data.Mapping.MappingParameter
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System.Data.SqlXml;
- using System.Xml.Schema;
- namespace System.Data.Mapping {
- public class MappingParameter
- {
- #region Properties
-
- [MonoTODO]
- public XmlSchemaBuiltInType DataType {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string Default {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string Name {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string NullValue {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public MappingSchema OwnerMappingSchema {
- get { throw new NotImplementedException (); }
- }
- #endregion // Properties
- }
- }
- #endif // NET_1_2
|