BinaryTypeConverterConvertFrom Method

Converts the given object to its original type.

Definition

Namespace: KGySoft.ComponentModel
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.5.0
C#
public override Object? ConvertFrom(
	ITypeDescriptorContext? context,
	CultureInfo? culture,
	Object? value
)

Parameters

context  ITypeDescriptorContext
An ITypeDescriptorContext that provides a format context. In this converter this parameter is ignored.
culture  CultureInfo
The CultureInfo to use as the current culture. In this converter this parameter is ignored.
value  Object
The Object to convert. This type converter supports String and byte[] types.

Return Value

Object
An Object that represents the converted value.

See Also