19 references to XmlAttributeProperties
PresentationFramework (19)
System\Windows\Data\BindingExpression.cs (2)
644
if (target.GetValue(
XmlAttributeProperties
.XmlnsDictionaryProperty) == null ||
645
target.GetValue(
XmlAttributeProperties
.XmlNamespaceMapsProperty) == null)
System\Windows\Markup\Baml2006\WpfSharedBamlSchemaContext.cs (2)
276
object dictObject = element.GetValue(System.Windows.Markup.
XmlAttributeProperties
.XmlnsDictionaryProperty);
278
object mapsObject = element.GetValue(System.Windows.Markup.
XmlAttributeProperties
.XmlNamespaceMapsProperty);
System\Windows\Markup\BamlRecordReader.cs (2)
3922
XmlnsDictionary elemDict =
XmlAttributeProperties
.GetXmlnsDictionary(e);
3935
XmlAttributeProperties
.SetXmlnsDictionary(e, elemDict);
System\Windows\Markup\Primitives\FrameworkElementFactoryMarkupObject.cs (1)
73
if (propertyValues[i].Property !=
XmlAttributeProperties
.XmlnsDictionaryProperty)
System\Windows\Markup\WpfXamlLoader.cs (4)
17
private static Lazy<XamlMember> XmlSpace = new Lazy<XamlMember>(() => new WpfXamlMember(
XmlAttributeProperties
.XmlSpaceProperty, true));
66
depObj.SetValue(
XmlAttributeProperties
.XmlNamespaceMapsProperty, namespaceMaps);
110
XmlAttributeProperties
.SetXmlnsDictionary(dObject, dictionary);
247
XmlAttributeProperties
.SetXmlSpace(dependencyObject, stack.CurrentFrame.XmlSpace.Value ? "default" : "preserve");
System\Windows\Markup\XamlReader.cs (1)
376
XmlAttributeProperties
.SetXmlnsDictionary(dObject, dictionary);
System\Windows\Markup\XamlTypeMapper.cs (2)
2172
XmlnsDictionary prefixDictionary = element.GetValue(
XmlAttributeProperties
.XmlnsDictionaryProperty)
2180
Hashtable namespaceMaps = element.GetValue(
XmlAttributeProperties
.XmlNamespaceMapsProperty)
System\Windows\Markup\XmlAttributeProperties.cs (5)
48
DependencyProperty.RegisterAttached("XmlSpace", typeof(string), typeof(
XmlAttributeProperties
),
52
DependencyProperty.RegisterAttached("XmlnsDictionary", typeof(XmlnsDictionary), typeof(
XmlAttributeProperties
),
56
DependencyProperty.RegisterAttached("XmlnsDefinition", typeof(string), typeof(
XmlAttributeProperties
),
61
DependencyProperty.RegisterAttached("XmlNamespaceMaps", typeof(Hashtable), typeof(
XmlAttributeProperties
),
334
_xmlSpaceSetter = typeof(
XmlAttributeProperties
).GetMethod("SetXmlSpace",