2 writes to FixedValue
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1273builder._attribute.FixedValue = value;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
9166o.@FixedValue = Reader.Value;
24 references to FixedValue
dotnet-svcutil-lib (24)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReader.cs (1)
2259originalStringValue = (schemaAttr.DefaultValue != null) ? schemaAttr.DefaultValue : schemaAttr.FixedValue;
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReaderAsync.cs (1)
675originalStringValue = (schemaAttr.DefaultValue != null) ? schemaAttr.DefaultValue : schemaAttr.FixedValue;
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (1)
1249if (attribute.DefaultValue != null && attribute.FixedValue != null)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (8)
2080if (a.FixedValue != null) 2086else if (xa.FixedValue != null) 2088if (xa.FixedValue != a.FixedValue) 2096decl.DefaultValueRaw = decl.DefaultValueExpanded = a.FixedValue; 2102if (xa.DefaultValue == null && xa.FixedValue == null) 2147if (xa.DefaultValue != null || xa.FixedValue != null) 2157decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.FixedValue;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (1)
896if (attribute.DefaultValue != null && attribute.FixedValue != null)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (6)
2500if (a.FixedValue == null && a.DefaultValue == null) 2504else if (a.FixedValue != null) 2510else if (xa.FixedValue != null) 2512object refFixedValue = datatype.ParseValue(xa.FixedValue, NameTable, new SchemaNamespaceManager(xa), true); 2580if (xa.DefaultValue != null || xa.FixedValue != null) 2597decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.FixedValue;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (1)
305WriteAttribute(@"fixed", @"", ((System.String)o.@FixedValue));
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (4)
1745else if (defaultValueProvider.FixedValue != null) 1747accessor.Default = defaultValueProvider.FixedValue; 1756else if (attribute.FixedValue != null) 1758accessor.Default = attribute.FixedValue;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
4119WriteAttribute(@"fixed", @"", ((global::System.String)o.@FixedValue));