Normalize line endings.
[mono.git] / mcs / class / System.ServiceModel.Discovery / System.ServiceModel.Discovery.Configuration / DiscoveryVersionConverter.cs
1 using System;
2 using System.ComponentModel;
3 using System.Configuration;
4 using System.Globalization;
5
6 namespace System.ServiceModel.Discovery.Configuration
7 {
8         public class DiscoveryVersionConverter : TypeConverter
9         {
10                 public DiscoveryVersionConverter ()
11                 {
12                 }
13                 
14                 public override bool CanConvertFrom (ITypeDescriptorContext context, Type sourceType)
15                 {
16                         throw new NotImplementedException ();
17                 }
18                 
19                 public override bool CanConvertTo (ITypeDescriptorContext context, Type destinationType)
20                 {
21                         throw new NotImplementedException ();
22                 }
23                 
24                 public override object ConvertFrom (ITypeDescriptorContext context, CultureInfo culture, object value)
25                 {
26                         throw new NotImplementedException ();
27                 }
28
29                 public override object ConvertTo (ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
30                 {
31                         throw new NotImplementedException ();
32                 }
33         }
34 }
35