Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DataColumnMappingConverter.cs « System.Data.Common « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5646cf6838596183f4a378c224117a3fe943ff39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// System.Data.Common.DataColumnMappingConverter.cs
//
// Author:
//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
//
// (C) 2004 Andreas Nahr
//

using System;
using System.Globalization;
using System.ComponentModel;

namespace System.Data.Common
{
	internal sealed class DataColumnMappingConverter : ExpandableObjectConverter
	{
		[MonoTODO]
		public DataColumnMappingConverter ()
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public override object ConvertTo (ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public override bool CanConvertTo (ITypeDescriptorContext context, Type destinationType)
		{
			throw new NotImplementedException ();
		}
	}
}