19 references to XmlAttributeProperties
PresentationFramework (19)
System\Windows\Data\BindingExpression.cs (2)
648if (target.GetValue(XmlAttributeProperties.XmlnsDictionaryProperty) == null || 649target.GetValue(XmlAttributeProperties.XmlNamespaceMapsProperty) == null)
System\Windows\Markup\Baml2006\WpfSharedBamlSchemaContext.cs (2)
277object dictObject = element.GetValue(System.Windows.Markup.XmlAttributeProperties.XmlnsDictionaryProperty); 279object mapsObject = element.GetValue(System.Windows.Markup.XmlAttributeProperties.XmlNamespaceMapsProperty);
System\Windows\Markup\BamlRecordReader.cs (2)
3932XmlnsDictionary elemDict = XmlAttributeProperties.GetXmlnsDictionary(e); 3945XmlAttributeProperties.SetXmlnsDictionary(e, elemDict);
System\Windows\Markup\Primitives\FrameworkElementFactoryMarkupObject.cs (1)
74if (propertyValues[i].Property != XmlAttributeProperties.XmlnsDictionaryProperty)
System\Windows\Markup\WpfXamlLoader.cs (4)
18private static Lazy<XamlMember> XmlSpace = new Lazy<XamlMember>(() => new WpfXamlMember(XmlAttributeProperties.XmlSpaceProperty, true)); 67depObj.SetValue(XmlAttributeProperties.XmlNamespaceMapsProperty, namespaceMaps); 114XmlAttributeProperties.SetXmlnsDictionary(dObject, dictionary); 251XmlAttributeProperties.SetXmlSpace(dependencyObject, stack.CurrentFrame.XmlSpace.Value ? "default" : "preserve");
System\Windows\Markup\XamlReader.cs (1)
376XmlAttributeProperties.SetXmlnsDictionary(dObject, dictionary);
System\Windows\Markup\XamlTypeMapper.cs (2)
2177XmlnsDictionary prefixDictionary = element.GetValue(XmlAttributeProperties.XmlnsDictionaryProperty) 2185Hashtable namespaceMaps = element.GetValue(XmlAttributeProperties.XmlNamespaceMapsProperty)
System\Windows\Markup\XmlAttributeProperties.cs (5)
49DependencyProperty.RegisterAttached("XmlSpace", typeof(string), typeof(XmlAttributeProperties), 53DependencyProperty.RegisterAttached("XmlnsDictionary", typeof(XmlnsDictionary), typeof(XmlAttributeProperties), 57DependencyProperty.RegisterAttached("XmlnsDefinition", typeof(string), typeof(XmlAttributeProperties), 62DependencyProperty.RegisterAttached("XmlNamespaceMaps", typeof(Hashtable), typeof(XmlAttributeProperties), 335_xmlSpaceSetter = typeof(XmlAttributeProperties).GetMethod("SetXmlSpace",