4 writes to AttributeFormDefault
System.Private.Xml (4)
System\Xml\Schema\Inference\Infer.cs (2)
338
xs.
AttributeFormDefault
= XmlSchemaForm.Unqualified;
485
xs.
AttributeFormDefault
= XmlSchemaForm.Unqualified;
System\Xml\Schema\XsdBuilder.cs (1)
1122
builder._schema.
AttributeFormDefault
= (XmlSchemaForm)builder.ParseEnum(value, "attributeFormDefault", s_formStringValues);
System\Xml\Serialization\XmlSchemaExporter.cs (1)
273
schema.
AttributeFormDefault
= attributeFormDefault == XmlSchemaForm.Unqualified ? XmlSchemaForm.None : attributeFormDefault;
6 references to AttributeFormDefault
System.Private.Xml (6)
System\Xml\Schema\Inference\Infer.cs (1)
425
if (xs!.
AttributeFormDefault
!= XmlSchemaForm.Unqualified)
System\Xml\Schema\Preprocessor.cs (1)
1026
_attributeFormDefault = schema.
AttributeFormDefault
;
System\Xml\Schema\SchemaCollectionpreProcessor.cs (1)
471
_attributeFormDefault = schema.
AttributeFormDefault
;
System\Xml\Serialization\XmlSchemaExporter.cs (1)
741
attribute.Form = accessor.Form == schema.
AttributeFormDefault
? XmlSchemaForm.None : accessor.Form;
System\Xml\Serialization\XmlSchemaImporter.cs (2)
2021
return schema.
AttributeFormDefault
== XmlSchemaForm.None ? XmlSchemaForm.Unqualified : schema.
AttributeFormDefault
;