4 writes to DefaultValue
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (1)
2408newElement.DefaultValue = copyElement.DefaultValue;
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1357builder._element.DefaultValue = value;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
865element.DefaultValue = ExportDefaultValue(accessor.Mapping, accessor.Default);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
10812o.@DefaultValue = Reader.Value;
22 references to DefaultValue
dotnet-svcutil-lib (22)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReader.cs (2)
2631return (schemaElem.DefaultValue != null) ? schemaElem.DefaultValue : schemaElem.FixedValue;
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (1)
2408newElement.DefaultValue = copyElement.DefaultValue;
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (3)
1371element.DefaultValue != null || 1378if (element.DefaultValue != null && element.FixedValue != null) 1454if (element.DefaultValue != null && element.FixedValue != null)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (3)
2369if (xe.DefaultValue != null || xe.FixedValue != null) 2375if (xe.DefaultValue != null) 2378decl.DefaultValueRaw = xe.DefaultValue;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (3)
1018element.DefaultValue != null || 1025if (element.DefaultValue != null && element.FixedValue != null) 1101if (element.DefaultValue != null && element.FixedValue != null)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (3)
2801if (xe.DefaultValue != null || xe.FixedValue != null) 2807if (xe.DefaultValue != null) 2810decl.DefaultValueRaw = xe.DefaultValue;
FrameworkFork\Microsoft.Xml\Xml\Serialization\Mappings.cs (2)
1330if (e1.DefaultValue != e2.DefaultValue)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (1)
982WriteAttribute(@"default", @"", o.DefaultValue);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (2)
347if (element.DefaultValue != null) 349accessor.Default = element.DefaultValue;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (1)
1365if (element.DefaultValue != null)
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
2851WriteAttribute(@"default", @"", ((global::System.String)o.@DefaultValue));