13 writes to DefaultValueRaw
System.Xml (13)
System\Xml\Schema\SchemaCollectionCompiler.cs (6)
1659decl.DefaultValueRaw = decl.DefaultValueExpanded = a.FixedValue; 1666decl.DefaultValueRaw = decl.DefaultValueExpanded = a.DefaultValue; 1704decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.DefaultValue; 1708decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.FixedValue; 1884decl.DefaultValueRaw = xe.DefaultValue; 1888decl.DefaultValueRaw = xe.FixedValue;
System\Xml\Schema\SchemaSetCompiler.cs (4)
2053decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.DefaultValue; 2062decl.DefaultValueRaw = decl.DefaultValueExpanded = xa.FixedValue; 2231decl.DefaultValueRaw = xe.DefaultValue; 2235decl.DefaultValueRaw = xe.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;
System\Xml\Schema\XmlSchemaValidator.cs (1)
1449elementDeclXsi.DefaultValueRaw = elementDecl.DefaultValueRaw;
17 references to DefaultValueRaw
System.Xml (17)
System\Xml\Dom\DocumentSchemaValidator.cs (2)
345XmlText textNode = document.CreateTextNode(schemaInfo.SchemaElement.ElementDecl.DefaultValueRaw); 388attr.AppendChild(document.CreateTextNode(schemaAttribute.AttDef.DefaultValueRaw));
System\Xml\Dom\XmlDocument.cs (1)
583defattr.InnerXml = attdef.DefaultValueRaw;
System\Xml\Schema\SchemaCollectionCompiler.cs (4)
1660decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true); 1667decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true); 1711decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true); 1891decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xe), true);
System\Xml\Schema\SchemaSetCompiler.cs (3)
2069decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true); 2242decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xe), true); 2246decl.DefaultValueTyped = DatatypeImplementation.AnySimpleType.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xe));
System\Xml\Schema\XdrBuilder.cs (1)
1558string str = (attDef.DefaultValueRaw).Trim();
System\Xml\Schema\XmlSchemaValidator.cs (5)
944AttributeIdentityConstraints(attdef.Name.Name, attdef.Name.Namespace, attdef.DefaultValueTyped, attdef.DefaultValueRaw, datatype); 1217Exception exception = currentElementDecl.Datatype.TryParseValue(currentElementDecl.DefaultValueRaw, nameTable, nsResolver, out typedVal); 1219SendValidationEvent(Res.Sch_InvalidElementDefaultValue, new string[] { currentElementDecl.DefaultValueRaw, QNameString(context.LocalName, context.Namespace) }); 1449elementDeclXsi.DefaultValueRaw = elementDecl.DefaultValueRaw; 1538if (decl.Presence == SchemaDeclBase.Use.Fixed && !elementValue.Equals(elementDecl.DefaultValueRaw)) { //check string equality for mixed as it is untyped.
System\Xml\Schema\XsdValidator.cs (1)
450AttributeIdentityConstraints(attdef.Name.Name, attdef.Name.Namespace, UnWrapUnion(attdef.DefaultValueTyped), attdef.DefaultValueRaw, attdef);