Skip to main content
.NET 6.0+

StructTypeConverter<T>.CanConvertFrom(ITypeDescriptorContext, Type) Method

Indicates whether or not this converter can convert an object of the specified type to the type of this converter.

Namespace: DevExpress.ExpressApp.Xpo.Utils

Assembly: DevExpress.ExpressApp.Xpo.v23.2.dll

NuGet Package: DevExpress.ExpressApp.Xpo

Declaration

public override bool CanConvertFrom(
    ITypeDescriptorContext context,
    Type sourceType
)

Parameters

Name Type Description
context ITypeDescriptorContext

An ITypeDescriptorContext object that provides a format context.

sourceType Type

A Type object that is the type to be converted from.

Returns

Type Description
Boolean

true, if the certain type can be convert to the string; otherwise, false.

Remarks

See the default implementation of this method in the StructTypeConverter<T> class description.

See Also