XamlSchemaContext.GetValueConverter<TConverterBase> Method

Definition

Returns a value converter that can convert to the requested targetType.

protected public:
generic <typename TConverterBase>
 where TConverterBase : class System::Xaml::Schema::XamlValueConverter<TConverterBase> ^ GetValueConverter(Type ^ converterType, System::Xaml::XamlType ^ targetType);
protected internal System.Xaml.Schema.XamlValueConverter<TConverterBase> GetValueConverter<TConverterBase> (Type converterType, System.Xaml.XamlType targetType) where TConverterBase : class;
member this.GetValueConverter : Type * System.Xaml.XamlType -> System.Xaml.Schema.XamlValueConverter<'ConverterBase (requires 'ConverterBase : null)> (requires 'ConverterBase : null)
Protected Friend Function GetValueConverter(Of TConverterBase As Class) (converterType As Type, targetType As XamlType) As XamlValueConverter(Of TConverterBase)

Type Parameters

TConverterBase

The specific converter base class.

Parameters

converterType
Type

The converter implementation.

targetType
XamlType

The desired destination type for the converter.

Returns

A XamlValueConverter<TConverterBase> with a constraint that matches the constraint that is put on the method call.

Applies to