Returns whether the type converter can convert an object from the specified type to the type of this converter.

Namespace:  C1.Silverlight
Assembly:  C1.Silverlight (in C1.Silverlight.dll)

Syntax

C#
public override bool CanConvertFrom(
	ITypeDescriptorContext context,
	Type sourceType
)
Visual Basic
Public Overrides Function CanConvertFrom ( _
	context As ITypeDescriptorContext, _
	sourceType As Type _
) As Boolean

Parameters

context
Type: System.ComponentModel..::..ITypeDescriptorContext
An object that provides a format context.
sourceType
Type: System..::..Type
The type you want to convert from.

Return Value

true if this converter can perform the conversion; otherwise, false.

See Also