TemplateBindingExtensionConverter::ConvertTo Method (ITypeDescriptorContext^, CultureInfo^, Object^, Type^)

 

Converts the given value object to the specified type.

Namespace:   System.Windows
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
[SecurityCriticalAttribute]
virtual Object^ ConvertTo(
	ITypeDescriptorContext^ context,
	CultureInfo^ culture,
	Object^ value,
	Type^ destinationType
) override

Parameters

context
Type: System.ComponentModel::ITypeDescriptorContext^

An ITypeDescriptorContext implementation that provides a format context.

culture
Type: System.Globalization::CultureInfo^

A CultureInfo object. If a null reference is passed, the current culture is assumed.

value
Type: System::Object^

The value to convert.

destinationType
Type: System::Type^

The desired type to convert to.

Return Value

Type: System::Object^

The converted value.

Only a destinationType of InstanceDescriptor will return a value originating from this implementation. Any other type provided for destinationType will cause this method to call base, which will result in no usable converted value and only serves for basic validation of the remaining parameters.

.NET Framework
Available since 3.0
Return to top
Show: