DiscoveryVersionConverter.cs 882 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.ComponentModel;
  3. using System.Configuration;
  4. using System.Globalization;
  5. namespace System.ServiceModel.Discovery.Configuration
  6. {
  7. public class DiscoveryVersionConverter : TypeConverter
  8. {
  9. public DiscoveryVersionConverter ()
  10. {
  11. }
  12. public override bool CanConvertFrom (ITypeDescriptorContext context, Type sourceType)
  13. {
  14. throw new NotImplementedException ();
  15. }
  16. public override bool CanConvertTo (ITypeDescriptorContext context, Type destinationType)
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. public override object ConvertFrom (ITypeDescriptorContext context, CultureInfo culture, object value)
  21. {
  22. throw new NotImplementedException ();
  23. }
  24. public override object ConvertTo (ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
  25. {
  26. throw new NotImplementedException ();
  27. }
  28. }
  29. }