1 write to XmlAttribute
System.Private.Xml (1)
System\Xml\Serialization\XmlReflectionImporter.cs (1)
1594
a.
XmlAttribute
= new XmlAttributeAttribute();
17 references to XmlAttribute
System.Private.Xml (17)
System\Xml\Serialization\XmlReflectionImporter.cs (17)
1578
if (a.
XmlAttribute
!= null && !accessor.TypeDesc.ArrayElementTypeDesc!.IsPrimitive && !accessor.TypeDesc.ArrayElementTypeDesc.IsEnum)
1590
bool isList = a.
XmlAttribute
!= null && (accessor.TypeDesc.ArrayElementTypeDesc!.IsPrimitive || accessor.TypeDesc.ArrayElementTypeDesc.IsEnum);
1598
Type targetType = a.
XmlAttribute
!.Type == null ? arrayElementType : a.
XmlAttribute
.Type!;
1600
attribute.Name = Accessor.EscapeQName(a.
XmlAttribute
.AttributeName.Length == 0 ? accessorName : a.
XmlAttribute
.AttributeName);
1601
attribute.Namespace = a.
XmlAttribute
.Namespace ?? ns;
1602
attribute.Form = a.
XmlAttribute
.Form;
1609
attribute.Mapping = ImportTypeMapping(_modelScope.GetTypeModel(targetType), ns, ImportContext.Attribute, a.
XmlAttribute
.DataType, null, isList, false, limiter);
1774
if (a.
XmlAttribute
!= null)
1777
if (a.
XmlAttribute
.Type != null) throw new InvalidOperationException(SR.Format(SR.XmlIllegalType, "XmlAttribute"));
1779
attribute.Name = Accessor.EscapeQName(a.
XmlAttribute
.AttributeName.Length == 0 ? accessorName : a.
XmlAttribute
.AttributeName);
1780
attribute.Namespace = a.
XmlAttribute
.Namespace ?? ns;
1781
attribute.Form = a.
XmlAttribute
.Form;
1788
attribute.Mapping = ImportTypeMapping(_modelScope.GetTypeModel(accessorType), ns, ImportContext.Attribute, a.
XmlAttribute
.DataType, null, limiter);
1869
if (a.
XmlAttribute
!= null || a.XmlText != null)