StringFormatMultiValueConverterConvert Method
Converts multi-binding inputs to a final value.
Namespace: Avalonia.Data.ConvertersAssembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
public Object? Convert(
IList<Object?> values,
Type targetType,
Object? parameter,
CultureInfo culture
)
Public Function Convert (
values As IList(Of Object),
targetType As Type,
parameter As Object,
culture As CultureInfo
) As Object
abstract Convert :
values : IList<Object> *
targetType : Type *
parameter : Object *
culture : CultureInfo -> Object
override Convert :
values : IList<Object> *
targetType : Type *
parameter : Object *
culture : CultureInfo -> Object
- values IListObject
- The values to convert.
- targetType Type
- The type of the target.
- parameter Object
- A user-defined parameter.
- culture CultureInfo
- The culture to use.
ObjectThe converted value.
IMultiValueConverterConvert(IListObject, Type, Object, CultureInfo)
This method should not throw exceptions. If the value is not convertible, return
UnsetValue. Any exception thrown will be treated as
an application exception.