5 writes to AttributeFormDefault
System.Web.Services (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
6828
o.
@AttributeFormDefault
= Read6_XmlSchemaForm(Reader.Value);
System.Xml (4)
System\Xml\Schema\Inference\Infer.cs (2)
358
xs.
AttributeFormDefault
= XmlSchemaForm.Unqualified;
502
xs.
AttributeFormDefault
= XmlSchemaForm.Unqualified;
System\Xml\Schema\XsdBuilder.cs (1)
1082
builder.schema.
AttributeFormDefault
= (XmlSchemaForm)builder.ParseEnum(value, "attributeFormDefault", FormStringValues);
System\Xml\Serialization\XmlSchemaExporter.cs (1)
266
schema.
AttributeFormDefault
= attributeFormDefault == XmlSchemaForm.Unqualified ? XmlSchemaForm.None : attributeFormDefault;
8 references to AttributeFormDefault
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
1813
if (((global::System.Xml.Schema.XmlSchemaForm)o.
@AttributeFormDefault
) != global::System.Xml.Schema.XmlSchemaForm.@None) {
1814
WriteAttribute(@"attributeFormDefault", @"", Write6_XmlSchemaForm(((global::System.Xml.Schema.XmlSchemaForm)o.
@AttributeFormDefault
)));
System.Xml (6)
System\Xml\Schema\Inference\Infer.cs (1)
444
if (xs.
AttributeFormDefault
!= XmlSchemaForm.Unqualified)
System\Xml\Schema\Preprocessor.cs (1)
883
this.attributeFormDefault = schema.
AttributeFormDefault
;
System\Xml\Schema\SchemaCollectionpreProcessor.cs (1)
392
this.attributeFormDefault = schema.
AttributeFormDefault
;
System\Xml\Serialization\XmlSchemaExporter.cs (1)
668
attribute.Form = accessor.Form == schema.
AttributeFormDefault
? XmlSchemaForm.None : accessor.Form;
System\Xml\Serialization\XmlSchemaImporter.cs (2)
1866
return schema.
AttributeFormDefault
== XmlSchemaForm.None ? XmlSchemaForm.Unqualified : schema.
AttributeFormDefault
;