X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Data%2FSystem.Data.Common%2FDataColumnMapping.cs;h=974e1fc43a28bc3fcc5760e9e74070b7f6db0a2f;hb=af90548a08ef5effc93b083b7eec44daa178b141;hp=52d940f420039c46a2d6a12082388da975b78fb3;hpb=6cfd2055426c190ca2f6a9f8ca3af2da6f6a79d0;p=mono.git diff --git a/mcs/class/System.Data/System.Data.Common/DataColumnMapping.cs b/mcs/class/System.Data/System.Data.Common/DataColumnMapping.cs index 52d940f4200..974e1fc43a2 100644 --- a/mcs/class/System.Data/System.Data.Common/DataColumnMapping.cs +++ b/mcs/class/System.Data/System.Data.Common/DataColumnMapping.cs @@ -64,14 +64,18 @@ namespace System.Data.Common { #region Properties +#if !NET_2_0 [DataSysDescription ("DataColumn.ColumnName")] +#endif [DefaultValue ("")] public string DataSetColumn { get { return dataSetColumn; } set { dataSetColumn = value; } } +#if !NET_2_0 [DataSysDescription ("Source column name - case sensitive.")] +#endif [DefaultValue ("")] public string SourceColumn { get { return sourceColumn; } @@ -96,6 +100,7 @@ namespace System.Data.Common { #if NET_2_0 [MonoTODO] + [EditorBrowsable (EditorBrowsableState.Advanced)] public static DataColumn GetDataColumnBySchemaAction (string sourceColumn, string dataSetColumn, DataTable dataTable, Type dataType, MissingSchemaAction schemaAction) { throw new NotImplementedException ();