NameReferenceConverter::ConvertFrom Method (ITypeDescriptorContext^, CultureInfo^, Object^)

.NET Framework (current version)
 

Converts the provided object to another object, using the specified context and culture information.

Namespace:   System.Windows.Markup
Assembly:  System.Xaml (in System.Xaml.dll)

public:
virtual Object^ ConvertFrom(
	ITypeDescriptorContext^ context,
	CultureInfo^ culture,
	Object^ value
) override

Parameters

context
Type: System.ComponentModel::ITypeDescriptorContext^

An ITypeDescriptorContext that provides a format context.

culture
Type: System.Globalization::CultureInfo^

The CultureInfo to use as the current culture.

value
Type: System::Object^

The reference name string to convert.

Return Value

Type: System::Object^

The returned object, which is potentially any object that is type-mapped in the relevant backing assemblies and capable of being declared in XAML with a XAML name reference.

Exception Condition
InvalidOperationException

value is a null string or empty string.

-or-

IXamlNameResolver service is missing or invalid.

ArgumentNullException

context is null.

Only a String input provides a conversion result.

.NET Framework
Available since 4.0
Return to top
Show: