DataSourceViewSchemaConverter.CanConvertFrom Method (ITypeDescriptorContext, Type)
.NET Framework 3.0
Indicates whether the specified source type can be converted to the type of the associated control property.
Namespace: System.Web.UI.Design
Assembly: System.Design (in system.design.dll)
Assembly: System.Design (in system.design.dll)
public: virtual bool CanConvertFrom ( ITypeDescriptorContext^ context, Type^ sourceType ) override
public boolean CanConvertFrom ( ITypeDescriptorContext context, Type sourceType )
public override function CanConvertFrom ( context : ITypeDescriptorContext, sourceType : Type ) : boolean
Not applicable.
Parameters
- context
An ITypeDescriptorContext implementation that can be used to gain additional context information.
- sourceType
The type to convert from.
Return Value
true if the converter can perform the conversion; otherwise, false.Call the CanConvertFrom method to determine whether the ConvertFrom method supports converting the source type.
The ConvertFrom method can convert only from a string, so the CanConvertFrom method returns true when sourceType is a string.
Community Additions
ADD
Show: