ConvertBack() 공개 메소드

Not supported.
public ConvertBack ( object value, Type targetTypes, object parameter, System culture ) : object[]
value object The value that the binding target produces.
targetTypes System.Type The array of types to convert to. The array length indicates the number and types of values that are suggested for the method to return.
parameter object The converter parameter to use.
culture System The culture to use in the converter.
리턴 object[]
        public void ConvertBack_Returns_Null()
        {
            var conv = new MultiBoolVisibleConverter();

            var result = conv.ConvertBack(null, null, null, CultureInfo.CurrentCulture);

            Assert.IsNull(result, "No longer an unsupported operation?");
        }