CmisSync.CmisTree.IgnoreStatusToTextConverter.Convert C# (CSharp) Method

Convert() public method

Converts the given ignore status into a text message
public Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object
targetType System.Type
parameter object
culture System.Globalization.CultureInfo
return object
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            return ((bool)value) ? Properties_Resources.DoNotIgnoreFolder : Properties_Resources.IgnoreFolder;
        }
        /// <summary>
IgnoreStatusToTextConverter