XamlObjectWriterSettings.IgnoreCanConvert Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that specifies whether the XAML writer should ignore (not call) CanConvertFrom(ITypeDescriptorContext, Type) implementations on a TypeConverter in type-converter situations.
public:
property bool IgnoreCanConvert { bool get(); void set(bool value); };
public bool IgnoreCanConvert { get; set; }
member this.IgnoreCanConvert : bool with get, set
Public Property IgnoreCanConvert As Boolean
Property Value
true
if the XAML writer ignores CanConvertFrom(ITypeDescriptorContext, Type) implementations; otherwise, false
. The default is false
.
Remarks
The TypeConverter class and its CanConvertFrom method are part of an overall design for type conversion in the CLR. In XAML systems, you can typically assume that type-converter input is identifiable by the XAML reader, and for purposes of input, is always a string. If you set this property to true
, you enable a mode where this assumption is codified in the XAML object writer behavior.
This mode supports a compatibility requirement for previous versions of WPF XAML.