22 references to AllowedMemberLocations
System.Xaml (22)
System\Xaml\Context\XamlContext.cs (2)
188if (AllowedMemberLocations.None == (directive.AllowedLocation & AllowedMemberLocations.Attribute))
System\Xaml\Schema\XamlDirective.cs (5)
18private AllowedMemberLocations _allowedLocation; 21internal XamlDirective(ReadOnlyCollection<string> immutableXamlNamespaces, string name, AllowedMemberLocations allowedLocation, MemberReflector reflector) 36XamlValueConverter<TypeConverter> typeConverter, AllowedMemberLocations allowedLocation) 61_allowedLocation = AllowedMemberLocations.Any; 64public AllowedMemberLocations AllowedLocation { get { return _allowedLocation; } }
System\Xaml\XamlLanguage.cs (15)
126String, BuiltInValueConverter.Int32, AllowedMemberLocations.Attribute), true); 129s_listOfObject.Value, null, AllowedMemberLocations.Any), true); 138s_string.Value, BuiltInValueConverter.Int32, AllowedMemberLocations.Any), true); 141s_string.Value, BuiltInValueConverter.String, AllowedMemberLocations.Any), true); 146s_listOfObject.Value, null, AllowedMemberLocations.Any), true); 149s_object.Value, null, AllowedMemberLocations.Any), true); 152s_object.Value, BuiltInValueConverter.String, AllowedMemberLocations.Any), true); 155s_listOfMembers.Value, null, AllowedMemberLocations.MemberElement), true); 158s_listOfAttributes.Value, null, AllowedMemberLocations.MemberElement), true); 163s_listOfObject.Value, null, AllowedMemberLocations.Any), true); 175new Lazy<XamlDirective>(() => GetXamlDirective(x_UnknownContent, AllowedMemberLocations.MemberElement, MemberReflector.UnknownReflector), true); 437return GetXamlDirective(name, String, BuiltInValueConverter.String, AllowedMemberLocations.Attribute); 440private static XamlDirective GetXamlDirective(string name, AllowedMemberLocations allowedLocation, MemberReflector reflector) 447XamlValueConverter<TypeConverter> typeConverter, AllowedMemberLocations allowedLocation) 455XamlDirective result = new XamlDirective(s_xmlNamespaces, name, AllowedMemberLocations.Attribute, new MemberReflector(String, BuiltInValueConverter.String));