2 writes to FixedValue
System.Private.Xml (1)
System\Xml\Schema\XsdBuilder.cs (1)
1266
builder._attribute!.
FixedValue
= value;
System.Web.Services.Description (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
9079
o.
@FixedValue
= Reader.Value;
26 references to FixedValue
System.Data.Common (1)
System\Data\XMLSchema.cs (1)
2334
strDefault = attr.
FixedValue
;
System.Private.Xml (23)
System\Xml\Core\XsdValidatingReader.cs (1)
2375
originalStringValue = schemaAttr.DefaultValue ?? schemaAttr.
FixedValue
!;
System\Xml\Core\XsdValidatingReaderAsync.cs (1)
701
originalStringValue = schemaAttr.DefaultValue ?? schemaAttr.
FixedValue
!;
System\Xml\Schema\Preprocessor.cs (1)
1216
if (attribute.DefaultValue != null && attribute.
FixedValue
!= null)
System\Xml\Schema\SchemaCollectionCompiler.cs (8)
2002
if (a.
FixedValue
!= null)
2008
else if (xa.
FixedValue
!= null)
2010
if (xa.
FixedValue
!= a.
FixedValue
)
2018
decl.DefaultValueRaw = decl.DefaultValueExpanded = a.
FixedValue
;
2024
if (xa.DefaultValue == null && xa.
FixedValue
== null)
2066
if (xa.DefaultValue != null || xa.
FixedValue
!= null)
2076
decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.
FixedValue
!;
System\Xml\Schema\SchemaCollectionpreProcessor.cs (1)
888
if (attribute.DefaultValue != null && attribute.
FixedValue
!= null)
System\Xml\Schema\SchemaSetCompiler.cs (6)
2445
if (a.
FixedValue
== null && a.DefaultValue == null)
2449
else if (a.
FixedValue
!= null)
2455
else if (xa.
FixedValue
!= null)
2457
object refFixedValue = datatype.ParseValue(xa.
FixedValue
, NameTable, new SchemaNamespaceManager(xa), true);
2522
if (xa.DefaultValue != null || xa.
FixedValue
!= null)
2540
decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.
FixedValue
!;
System\Xml\Serialization\SchemaObjectWriter.cs (1)
304
WriteAttribute(@"fixed", @"", ((string?)o.
@FixedValue
));
System\Xml\Serialization\XmlSchemaImporter.cs (4)
1604
else if (defaultValueProvider.
FixedValue
!= null)
1606
accessor.Default = defaultValueProvider.
FixedValue
;
1615
else if (attribute.
FixedValue
!= null)
1617
accessor.Default = attribute.
FixedValue
;
System.Private.Xml.Linq (1)
System\Xml\Schema\XNodeValidator.cs (1)
135
string? s = saCopy.
FixedValue
;
System.Web.Services.Description (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
3841
WriteAttribute(@"fixed", @"", ((global::System.String)o.
@FixedValue
));