XamlType.IsUnknown Property

Definition

Gets a value that indicates whether this XamlType represents a type that cannot be resolved in the underlying type system.

public:
 property bool IsUnknown { bool get(); };
public bool IsUnknown { get; }
member this.IsUnknown : bool
Public ReadOnly Property IsUnknown As Boolean

Property Value

true if this XamlType represents an unresolvable type; otherwise, false.

Remarks

If you do not use the default internal CLR reflection technique for a XamlType, calls to this property can invoke LookupIsUnknown overrides on XamlType derived classes.

For a load path that involves XamlObjectWriter, a XamlType that has true for IsUnknown cannot be written into an object graph. Under the default implementations in System.Xaml , the XamlObjectWriter.WriteStartObject call throws a XamlObjectWriterException when the relevant XamlType reports true for IsUnknown. You should not pass a XamlType that has IsUnknown as true unless you are prepared to handle the exceptions from XamlObjectWriter, or you have other ways to adjust the XamlObjectWriter behavior or the XAML node stream prior to writing the object graph.

Applies to