XamlObjectWriterSettings.PreferUnconvertedDictionaryKeys Property

Definition

Gets or sets a value that determines whether to disable a default XamlObjectWriter feature that runs type conversion on the K component of a Dictionary<TKey,TValue> before writing the object graph representation.

public:
 property bool PreferUnconvertedDictionaryKeys { bool get(); void set(bool value); };
public bool PreferUnconvertedDictionaryKeys { get; set; }
member this.PreferUnconvertedDictionaryKeys : bool with get, set
Public Property PreferUnconvertedDictionaryKeys As Boolean

Property Value

true if K type conversion for a Dictionary<TKey,TValue> object should be disabled. false if performing K type conversion for a Dictionary<TKey,TValue> object applies. The default is false.

Remarks

For more information about the K type conversion feature, see Remarks in XamlObjectWriter.

Applies to