Cimbalino.Phone.Toolkit.Converters.StringToLowercaseConverter.ConvertBack C# (CSharp) Метод

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

Formats a string value to lower case.
public ConvertBack ( object value, Type targetType, object parameter, System culture ) : object
value object The value produced by the binding source.
targetType System.Type The type of the binding target property.
parameter object The converter parameter to use.
culture System The culture to use in the converter.
Результат object
        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            throw new NotSupportedException();
        }

Usage Example

        public void ConvertBackIsNotImplemented()
        {
            var converter = new StringToLowercaseConverter();

            Assert.ThrowsException<NotImplementedException>(() => converter.ConvertBack(null, typeof(string), null, CultureInfo.CurrentCulture));
        }
StringToLowercaseConverter