13 writes to DefaultValueRaw
System.Private.Xml (13)
System\Xml\Schema\SchemaCollectionCompiler.cs (6)
2018decl.DefaultValueRaw = decl.DefaultValueExpanded = a.FixedValue; 2027decl.DefaultValueRaw = decl.DefaultValueExpanded = a.DefaultValue; 2071decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.DefaultValue; 2076decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.FixedValue!; 2293decl.DefaultValueRaw = xe.DefaultValue; 2298decl.DefaultValueRaw = xe.FixedValue!;
System\Xml\Schema\SchemaSetCompiler.cs (4)
2527decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.DefaultValue; 2540decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.FixedValue!; 2752decl.DefaultValueRaw = xe.DefaultValue; 2757decl.DefaultValueRaw = xe.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;
System\Xml\Schema\XmlSchemaValidator.cs (1)
1713elementDeclXsi.DefaultValueRaw = elementDecl.DefaultValueRaw;
17 references to DefaultValueRaw
System.Private.Xml (17)
System\Xml\Dom\DocumentSchemaValidator.cs (2)
377XmlText textNode = _document.CreateTextNode(_schemaInfo.SchemaElement!.ElementDecl!.DefaultValueRaw); 425attr.AppendChild(_document.CreateTextNode(schemaAttribute.AttDef!.DefaultValueRaw));
System\Xml\Dom\XmlDocument.cs (1)
715defattr.InnerXml = attdef.DefaultValueRaw;
System\Xml\Schema\SchemaCollectionCompiler.cs (4)
2019decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true); 2028decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true); 2080decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true); 2302decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xe), true);
System\Xml\Schema\SchemaSetCompiler.cs (3)
2551decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true); 2767decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xe), true); 2772decl.DefaultValueTyped = DatatypeImplementation.AnySimpleType.Datatype!.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xe));
System\Xml\Schema\XdrBuilder.cs (1)
1785string str = (attDef.DefaultValueRaw).Trim();
System\Xml\Schema\XmlSchemaValidator.cs (5)
1077AttributeIdentityConstraints(attdef.Name.Name, attdef.Name.Namespace, attdef.DefaultValueTyped, attdef.DefaultValueRaw, datatype); 1418Exception? exception = currentElementDecl.Datatype.TryParseValue(currentElementDecl.DefaultValueRaw, _nameTable, _nsResolver, out typedVal); 1421SendValidationEvent(SR.Sch_InvalidElementDefaultValue, new string[] { currentElementDecl.DefaultValueRaw, QNameString(_context.LocalName!, _context.Namespace!) }); 1713elementDeclXsi.DefaultValueRaw = elementDecl.DefaultValueRaw; 1820if (decl.Presence == SchemaDeclBase.Use.Fixed && !elementValue.Equals(elementDecl.DefaultValueRaw))
System\Xml\Schema\XsdValidator.cs (1)
544AttributeIdentityConstraints(attdef.Name.Name, attdef.Name.Namespace, UnWrapUnion(attdef.DefaultValueTyped), attdef.DefaultValueRaw, attdef);