AllowedMemberLocations Enum
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.
Specifies the syntax restrictions enforced on a property when it is set in XAML, as reported by a XamlDirective.
This enumeration supports a bitwise combination of its member values.
public enum class AllowedMemberLocations
[System.Flags]
public enum AllowedMemberLocations
[<System.Flags>]
type AllowedMemberLocations =
Public Enum AllowedMemberLocations
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Property cannot be set in XAML at all. This is the default. |
Attribute | 1 | Property can be set in XAML attribute syntax. |
MemberElement | 2 | Property can be set in XAML property element syntax. |
Any | 3 | Property can be set in either Attribute or MemberElement location. (This enumeration member is defined as the combination of those values.) |
Remarks
Information reported by this property does not account for any possible markup extensions. Markup extensions are processed first and can potentially return objects from within an attribute usage, even for properties that are notated as MemberElement only.