22 references to AllowedMemberLocations
System.Xaml (22)
System\Xaml\Context\XamlContext.cs (2)
185if ((directive.AllowedLocation & AllowedMemberLocations.Attribute) == AllowedMemberLocations.None)
System\Xaml\Schema\XamlDirective.cs (5)
16private AllowedMemberLocations _allowedLocation; 19internal XamlDirective(ReadOnlyCollection<string> immutableXamlNamespaces, string name, AllowedMemberLocations allowedLocation, MemberReflector reflector) 34XamlValueConverter<TypeConverter> typeConverter, AllowedMemberLocations allowedLocation) 59_allowedLocation = AllowedMemberLocations.Any; 62public AllowedMemberLocations AllowedLocation { get { return _allowedLocation; } }
System\Xaml\XamlLanguage.cs (15)
125String, BuiltInValueConverter.Int32, AllowedMemberLocations.Attribute), true); 128s_listOfObject.Value, null, AllowedMemberLocations.Any), true); 137s_string.Value, BuiltInValueConverter.Int32, AllowedMemberLocations.Any), true); 140s_string.Value, BuiltInValueConverter.String, AllowedMemberLocations.Any), true); 145s_listOfObject.Value, null, AllowedMemberLocations.Any), true); 148s_object.Value, null, AllowedMemberLocations.Any), true); 151s_object.Value, BuiltInValueConverter.String, AllowedMemberLocations.Any), true); 154s_listOfMembers.Value, null, AllowedMemberLocations.MemberElement), true); 157s_listOfAttributes.Value, null, AllowedMemberLocations.MemberElement), true); 162s_listOfObject.Value, null, AllowedMemberLocations.Any), true); 174new Lazy<XamlDirective>(() => GetXamlDirective(x_UnknownContent, AllowedMemberLocations.MemberElement, MemberReflector.UnknownReflector), true); 436return GetXamlDirective(name, String, BuiltInValueConverter.String, AllowedMemberLocations.Attribute); 439private static XamlDirective GetXamlDirective(string name, AllowedMemberLocations allowedLocation, MemberReflector reflector) 446XamlValueConverter<TypeConverter> typeConverter, AllowedMemberLocations allowedLocation) 454XamlDirective result = new XamlDirective(s_xmlNamespaces, name, AllowedMemberLocations.Attribute, new MemberReflector(String, BuiltInValueConverter.String));