AC.AvalonControlsLibrary.Core.OneWayMultiValueConverter.ConvertBack C# (CSharp) Метод

ConvertBack() публичный Метод

Unimplemented method for converting back. This converter can only be used for one-way binding.
public ConvertBack ( object value, Array targetTypes, object parameter, System.Globalization.CultureInfo culture ) : object[]
value object Unused parameter
targetTypes Array Unused parameter
parameter object Unused parameter
culture System.Globalization.CultureInfo Unused parameter
Результат object[]
        public object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture)
        {
            throw new NotSupportedException("This is a one-way value converter. ConvertBack method is not supported.");
        }
    }
OneWayMultiValueConverter