MonoMobile.Views.UriConverter.ConvertBack C# (CSharp) Method

ConvertBack() public method

public ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object
targetType System.Type
parameter object
culture System.Globalization.CultureInfo
return object
        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
			if (value.GetType() == typeof(Uri))
			{
				return ((Uri)value).AbsoluteUri;
			}

			return value;
        }
    }