Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.

Namespace: CodeSmith.Engine
Assembly: CodeSmith.Engine (in CodeSmith.Engine.dll) Version: 6.0.0.0 (7.0.0.15127)

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 ITypeDescriptorContext that provides a format context.
sourceType
Type: System..::..Type
A Type that represents the type you want to convert from.

Return Value

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

See Also