ArcGISWindowsPhoneSDK.HtmlToTextConverter.Convert C# (CSharp) Méthode

Convert() public méthode

public Convert ( object value, Type targetType, object parameter, System culture ) : object
value object
targetType System.Type
parameter object
culture System
Résultat object
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            if (value is string)
                return ToStrippedHtmlText(value);
            return value;
        }