5 writes to AttributeFormDefault
System.Private.Xml (4)
System\Xml\Schema\Inference\Infer.cs (2)
338xs.AttributeFormDefault = XmlSchemaForm.Unqualified; 485xs.AttributeFormDefault = XmlSchemaForm.Unqualified;
System\Xml\Schema\XsdBuilder.cs (1)
1122builder._schema.AttributeFormDefault = (XmlSchemaForm)builder.ParseEnum(value, "attributeFormDefault", s_formStringValues);
System\Xml\Serialization\XmlSchemaExporter.cs (1)
273schema.AttributeFormDefault = attributeFormDefault == XmlSchemaForm.Unqualified ? XmlSchemaForm.None : attributeFormDefault;
System.Web.Services.Description (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
8344o.@AttributeFormDefault = Read6_XmlSchemaForm(Reader.Value);
8 references to AttributeFormDefault
System.Private.Xml (6)
System\Xml\Schema\Inference\Infer.cs (1)
425if (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)
741attribute.Form = accessor.Form == schema.AttributeFormDefault ? XmlSchemaForm.None : accessor.Form;
System\Xml\Serialization\XmlSchemaImporter.cs (2)
2021return schema.AttributeFormDefault == XmlSchemaForm.None ? XmlSchemaForm.Unqualified : schema.AttributeFormDefault;
System.Web.Services.Description (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
2150if (((global::System.Xml.Schema.XmlSchemaForm)o.@AttributeFormDefault) != Xml.Schema.XmlSchemaForm.@None) { 2151WriteAttribute(@"attributeFormDefault", @"", Write6_XmlSchemaForm(((global::System.Xml.Schema.XmlSchemaForm)o.@AttributeFormDefault)));