3 writes to FixedValue
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (1)
2410newElement.FixedValue = copyElement.FixedValue;
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1377builder._element.FixedValue = value;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
10822o.@FixedValue = Reader.Value;
21 references to FixedValue
dotnet-svcutil-lib (21)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReader.cs (1)
2631return (schemaElem.DefaultValue != null) ? schemaElem.DefaultValue : schemaElem.FixedValue;
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (1)
2410newElement.FixedValue = copyElement.FixedValue;
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (3)
1373element.FixedValue != null || 1378if (element.DefaultValue != null && element.FixedValue != null) 1454if (element.DefaultValue != null && element.FixedValue != null)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (5)
1416(baseElement.FixedValue == null || baseElement.FixedValue == derivedElement.FixedValue) && 2369if (xe.DefaultValue != null || xe.FixedValue != null) 2383decl.DefaultValueRaw = xe.FixedValue;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (3)
1020element.FixedValue != null || 1025if (element.DefaultValue != null && element.FixedValue != null) 1101if (element.DefaultValue != null && element.FixedValue != null)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (3)
1654(baseElement.FixedValue == null || IsFixedEqual(baseElement.ElementDecl, derivedElement.ElementDecl)) && 2801if (xe.DefaultValue != null || xe.FixedValue != null) 2815decl.DefaultValueRaw = xe.FixedValue;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (1)
984WriteAttribute(@"fixed", @"", o.FixedValue);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (2)
351else if (element.FixedValue != null) 353accessor.Default = element.FixedValue;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (1)
1367if (element.FixedValue != null)
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
2856WriteAttribute(@"fixed", @"", ((global::System.String)o.@FixedValue));