| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // System.Data.SqlClient.SqlParameterConverter.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System;
- using System.ComponentModel;
- using System.Globalization;
- namespace System.Data.SqlClient {
- internal sealed class SqlParameterConverter : ExpandableObjectConverter
- {
- #region Constructors
- [MonoTODO]
- public SqlParameterConverter ()
- {
- throw new NotImplementedException ();
- }
- #endregion // Constructors
- #region Methods
-
- [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 ();
- }
- #endregion // Methods
- }
- }
|