AllowedMemberLocations Enum

Definition

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
AllowedMemberLocations
Attributes

Fields

Any 3

Property can be set in either Attribute or MemberElement location. (This enumeration member is defined as the combination of those values.)

Attribute 1

Property can be set in XAML attribute syntax.

MemberElement 2

Property can be set in XAML property element syntax.

None 0

Property cannot be set in XAML at all. This is the default.

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.

Applies to

See also