12 writes to DefaultValueExpanded
System.Xml (12)
System\Xml\Schema\DtdParser.cs (2)
862attrDef.DefaultValueExpanded = GetValueWithStrippedSpaces(); 865attrDef.DefaultValueExpanded = GetValue();
System\Xml\Schema\DtdParserAsync.cs (2)
507attrDef.DefaultValueExpanded = GetValueWithStrippedSpaces(); 510attrDef.DefaultValueExpanded = GetValue();
System\Xml\Schema\SchemaCollectionCompiler.cs (4)
1659decl.DefaultValueRaw = decl.DefaultValueExpanded = a.FixedValue; 1666decl.DefaultValueRaw = decl.DefaultValueExpanded = a.DefaultValue; 1704decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.DefaultValue; 1708decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.FixedValue;
System\Xml\Schema\SchemaSetCompiler.cs (2)
2053decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.DefaultValue; 2062decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.FixedValue;
System\Xml\Schema\XdrBuilder.cs (2)
1022builder._AttributeDef._AttDef.DefaultValueRaw = builder._AttributeDef._AttDef.DefaultValueExpanded = (string)builder._AttributeDef._Default; 1479pAttdef.DefaultValueRaw = pAttdef.DefaultValueExpanded = (string)decl._Default;
5 references to DefaultValueExpanded
System.Xml (5)
System\Xml\Core\XmlTextReaderImpl.cs (1)
8270NodeData attr = AddDefaultAttributeInternal( localName, ns, prefix, attrDef.DefaultValueExpanded,
System\Xml\Schema\DtdParser.cs (1)
680string val = attrDef.DefaultValueExpanded.Trim();
System\Xml\Schema\DtdParserAsync.cs (1)
325string val = attrDef.DefaultValueExpanded.Trim();
System\Xml\Schema\DtdValidator.cs (1)
441string value = attdef.DefaultValueExpanded;
System\Xml\Schema\SchemaAttDef.cs (1)
98get { return ((SchemaAttDef)this).DefaultValueExpanded; }