VersionConverterCanConvertFrom Method

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

Definition

Namespace: KGySoft.ComponentModel
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.1.0
C#
public override bool CanConvertFrom(
	ITypeDescriptorContext? context,
	Type sourceType
)

Parameters

context  ITypeDescriptorContext
An ITypeDescriptorContext that provides a format context. In this converter this parameter is ignored.
sourceType  Type
A Type that represents the type you want to convert from. This type converter supports String type only.

Return Value

Boolean
if this converter can perform the conversion; otherwise, .

See Also