XamlMember.IsDirective 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 a value that indicates whether this XamlMember is a XAML directive.
public:
property bool IsDirective { bool get(); };
public bool IsDirective { get; }
member this.IsDirective : bool
Public ReadOnly Property IsDirective As Boolean
Property Value
true
if this XamlMember is a XAML directive; otherwise, false
.
Remarks
The IsDirective value is initialized based on which constructor was used to construct a XamlMember. The base XamlMember constructors initialize so that IsDirective is false
. However, the XamlDirective class (a XamlMember derived class) initializes so that IsDirective is true
.
If you want to report IsDirective as true
to callers of a custom XAML schema class for XAML members, make sure you derive from XamlDirective because that is the only way to enable that behavior.