| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- //
- // System.Data.Mapping.FieldMap
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System.Data.SqlXml;
- namespace System.Data.Mapping {
- public class FieldMap
- {
- #region Properties
-
- [MonoTODO]
- public string NullValue {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public Map OwnerMap {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string SourceConstant {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public Field SourceField {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public MappingParameter SourceParameter {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public MappingArgumentType SourceType {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string TargetConstant {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public IDomainField TargetDomainField {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public MappingParameter TargetParameter {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public MappingArgumentType TargetType {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public bool UseForConcurrency {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public MappingAccess UseNull {
- get { throw new NotImplementedException (); }
- }
- #endregion // Properties
- }
- }
- #endif // NET_1_2
|