12 writes to DefaultValueExpanded
System.Private.Xml (12)
System\Xml\Schema\DtdParser.cs (2)
912attrDef.DefaultValueExpanded = GetValueWithStrippedSpaces(); 916attrDef.DefaultValueExpanded = GetValue();
System\Xml\Schema\DtdParserAsync.cs (2)
556attrDef.DefaultValueExpanded = GetValueWithStrippedSpaces(); 560attrDef.DefaultValueExpanded = GetValue();
System\Xml\Schema\SchemaCollectionCompiler.cs (4)
2018decl.DefaultValueRaw = decl.DefaultValueExpanded = a.FixedValue; 2027decl.DefaultValueRaw = decl.DefaultValueExpanded = a.DefaultValue; 2071decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.DefaultValue; 2076decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.FixedValue!;
System\Xml\Schema\SchemaSetCompiler.cs (2)
2527decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.DefaultValue; 2540decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.FixedValue!;
System\Xml\Schema\XdrBuilder.cs (2)
1145builder._AttributeDef._AttDef.DefaultValueRaw = builder._AttributeDef._AttDef.DefaultValueExpanded = (string)builder._AttributeDef._Default; 1688pAttdef.DefaultValueRaw = pAttdef.DefaultValueExpanded = (string)decl._Default;
5 references to DefaultValueExpanded
System.Private.Xml (5)
System\Xml\Core\XmlTextReaderImpl.cs (1)
9263NodeData attr = AddDefaultAttributeInternal(localName, ns, prefix, attrDef.DefaultValueExpanded,
System\Xml\Schema\DtdParser.cs (1)
716string val = attrDef.DefaultValueExpanded.Trim();
System\Xml\Schema\DtdParserAsync.cs (1)
360string val = attrDef.DefaultValueExpanded.Trim();
System\Xml\Schema\DtdValidator.cs (1)
533string value = attdef.DefaultValueExpanded;
System\Xml\Schema\SchemaAttDef.cs (1)
98get { return ((SchemaAttDef)this).DefaultValueExpanded; }