ComponentResourceKeyConverter.ConvertFrom Method

Definition

Attempts to convert the specified object to a ComponentResourceKey, using the specified context. Throws an exception in all cases.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 override System::Object ^ ConvertFrom(System::ComponentModel::ITypeDescriptorContext ^ context, System::Globalization::CultureInfo ^ culture, System::Object ^ value);
public override object ConvertFrom (System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value);
override this.ConvertFrom : System.ComponentModel.ITypeDescriptorContext * System.Globalization.CultureInfo * obj -> obj
Public Overrides Function ConvertFrom (context As ITypeDescriptorContext, culture As CultureInfo, value As Object) As Object

Parameters

context
ITypeDescriptorContext

A format context that provides information about the environment from which this converter is being invoked.

culture
CultureInfo

Culture specific information.

value
Object

The object to convert.

Returns

Throws an exception in all cases.

Exceptions

Cannot perform the conversion.

Remarks

The ComponentResourceKey type should not use a type converter pathway to convert values (should use markup extensions instead). For this reason, the CanConvertFrom(ITypeDescriptorContext, Type) and CanConvertTo(ITypeDescriptorContext, Type) methods always return false. The ConvertFrom(ITypeDescriptorContext, CultureInfo, Object) and ConvertTo(ITypeDescriptorContext, CultureInfo, Object, Type) methods always throw an exception.

Applies to