19 references to XmlAttributeProperties
PresentationFramework (19)
src\Framework\System\Windows\Data\BindingExpression.cs (2)
658
if (target.GetValue(
XmlAttributeProperties
.XmlnsDictionaryProperty) == null ||
659
target.GetValue(
XmlAttributeProperties
.XmlNamespaceMapsProperty) == null)
src\Framework\System\Windows\Markup\Baml2006\WpfSharedBamlSchemaContext.cs (2)
287
object dictObject = element.GetValue(System.Windows.Markup.
XmlAttributeProperties
.XmlnsDictionaryProperty);
289
object mapsObject = element.GetValue(System.Windows.Markup.
XmlAttributeProperties
.XmlNamespaceMapsProperty);
src\Framework\System\Windows\Markup\BamlRecordReader.cs (2)
3980
XmlnsDictionary elemDict =
XmlAttributeProperties
.GetXmlnsDictionary(e);
3993
XmlAttributeProperties
.SetXmlnsDictionary(e, elemDict);
src\Framework\System\Windows\Markup\Primitives\FrameworkElementFactoryMarkupObject.cs (1)
85
if (propertyValues[i].Property !=
XmlAttributeProperties
.XmlnsDictionaryProperty)
src\Framework\System\Windows\Markup\WpfXamlLoader.cs (4)
15
private static Lazy<XamlMember> XmlSpace = new Lazy<XamlMember>(() => new WpfXamlMember(
XmlAttributeProperties
.XmlSpaceProperty, true));
64
depObj.SetValue(
XmlAttributeProperties
.XmlNamespaceMapsProperty, namespaceMaps);
111
XmlAttributeProperties
.SetXmlnsDictionary(dObject, dictionary);
231
XmlAttributeProperties
.SetXmlSpace(dependencyObject, stack.CurrentFrame.XmlSpace.Value ? "default" : "preserve");
src\Framework\System\Windows\Markup\XamlReader.cs (1)
293
XmlAttributeProperties
.SetXmlnsDictionary(dObject, dictionary);
src\Framework\System\Windows\Markup\XamlTypeMapper.cs (2)
2270
XmlnsDictionary prefixDictionary = element.GetValue(
XmlAttributeProperties
.XmlnsDictionaryProperty)
2278
Hashtable namespaceMaps = element.GetValue(
XmlAttributeProperties
.XmlNamespaceMapsProperty)
src\Framework\System\Windows\Markup\XmlAttributeProperties.cs (5)
64
DependencyProperty.RegisterAttached("XmlSpace", typeof(string), typeof(
XmlAttributeProperties
),
68
DependencyProperty.RegisterAttached("XmlnsDictionary", typeof(XmlnsDictionary), typeof(
XmlAttributeProperties
),
72
DependencyProperty.RegisterAttached("XmlnsDefinition", typeof(string), typeof(
XmlAttributeProperties
),
77
DependencyProperty.RegisterAttached("XmlNamespaceMaps", typeof(Hashtable), typeof(
XmlAttributeProperties
),
351
_xmlSpaceSetter = typeof(
XmlAttributeProperties
).GetMethod("SetXmlSpace",