5 writes to AttributeFormDefault
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (2)
360
xs.
AttributeFormDefault
= XmlSchemaForm.Unqualified;
504
xs.
AttributeFormDefault
= XmlSchemaForm.Unqualified;
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1130
builder._schema.
AttributeFormDefault
= (XmlSchemaForm)builder.ParseEnum(value, "attributeFormDefault", s_formStringValues);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
300
schema.
AttributeFormDefault
= attributeFormDefault == XmlSchemaForm.Unqualified ? XmlSchemaForm.None : attributeFormDefault;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
8502
o.
@AttributeFormDefault
= Read6_XmlSchemaForm(Reader.Value);
8 references to AttributeFormDefault
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (1)
446
if (xs.
AttributeFormDefault
!= XmlSchemaForm.Unqualified)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (1)
1061
_attributeFormDefault = schema.
AttributeFormDefault
;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (1)
476
_attributeFormDefault = schema.
AttributeFormDefault
;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
781
attribute.Form = accessor.Form == schema.
AttributeFormDefault
? XmlSchemaForm.None : accessor.Form;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (2)
2157
return schema.
AttributeFormDefault
== XmlSchemaForm.None ? XmlSchemaForm.Unqualified : schema.
AttributeFormDefault
;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (2)
2315
if (((Microsoft.Xml.Schema.XmlSchemaForm)o.
@AttributeFormDefault
) != Microsoft.Xml.Schema.XmlSchemaForm.@None)
2317
WriteAttribute(@"attributeFormDefault", @"", Write6_XmlSchemaForm(((Microsoft.Xml.Schema.XmlSchemaForm)o.
@AttributeFormDefault
)));