10 writes to DefaultValueTyped
System.Private.Xml (10)
System\Xml\Schema\DtdValidator.cs (1)
543
attdef.
DefaultValueTyped
= dtype.ParseValue(value, readerAdapter.NameTable, readerAdapter.NamespaceResolver);
System\Xml\Schema\SchemaCollectionCompiler.cs (4)
2019
decl.
DefaultValueTyped
= decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true);
2028
decl.
DefaultValueTyped
= decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true);
2080
decl.
DefaultValueTyped
= decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true);
2302
decl.
DefaultValueTyped
= decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xe), true);
System\Xml\Schema\SchemaSetCompiler.cs (3)
2551
decl.
DefaultValueTyped
= decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true);
2767
decl.
DefaultValueTyped
= decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xe), true);
2772
decl.
DefaultValueTyped
= DatatypeImplementation.AnySimpleType.Datatype!.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xe));
System\Xml\Schema\XdrValidator.cs (1)
616
attdef.
DefaultValueTyped
= typedValue;
System\Xml\Schema\XmlSchemaValidator.cs (1)
1726
elementDeclXsi.
DefaultValueTyped
= elementDecl.DefaultValueTyped;
35 references to DefaultValueTyped
System.Private.Xml (35)
System\Xml\Core\XmlTextReaderImpl.cs (1)
9269
attr.typedValue = attrDef.
DefaultValueTyped
;
System\Xml\Dom\DocumentSchemaValidator.cs (1)
446
XsdSimpleValue? simpleValue = attributeDef.
DefaultValueTyped
as XsdSimpleValue;
System\Xml\Schema\DtdValidator.cs (3)
167
if (Reader.IsEmptyElement && context.ElementDecl.
DefaultValueTyped
!= null)
169
Reader.TypedValueObject = context.ElementDecl.
DefaultValueTyped
;
575
object? typedValue = attdef.
DefaultValueTyped
;
System\Xml\Schema\SchemaAttDef.cs (1)
103
get { return ((SchemaAttDef)this).
DefaultValueTyped
; }
System\Xml\Schema\SchemaSetCompiler.cs (4)
2458
if (!datatype.IsEqual(decl.
DefaultValueTyped
!, refFixedValue))
3084
object baseFixedValue = baseDecl.
DefaultValueTyped
!;
3092
object derivedFixedValue = derivedDecl.
DefaultValueTyped
!;
3108
XsdSimpleValue simpleFixedValue = (baseDecl.
DefaultValueTyped
as XsdSimpleValue)!;
System\Xml\Schema\XdrBuilder.cs (3)
1684
if (decl._Default != null || pAttdef.
DefaultValueTyped
!= null)
1703
if (pAttdef.
DefaultValueTyped
!= null)
1708
else if (pAttdef.
DefaultValueTyped
!= null)
System\Xml\Schema\XdrValidator.cs (2)
250
if (reader.IsEmptyElement && !context.IsNill && context.ElementDecl.
DefaultValueTyped
!= null)
252
reader.TypedValueObject = context.ElementDecl.
DefaultValueTyped
;
System\Xml\Schema\XmlSchemaInfo.cs (1)
158
return _schemaElement != null && _schemaElement.ElementDecl!.
DefaultValueTyped
!= null;
System\Xml\Schema\XmlSchemaValidator.cs (14)
788
if (_context.ElementDecl.
DefaultValueTyped
!= null)
849
if (_context.ElementDecl.
DefaultValueTyped
!= null)
1029
if (attdef.
DefaultValueTyped
== null)
1062
XsdSimpleValue simpleValue = (attdef.
DefaultValueTyped
as XsdSimpleValue)!;
1069
attrValidInfo.typedAttributeValue = attdef.
DefaultValueTyped
;
1086
CheckTokenizedTypes(datatype, attdef.
DefaultValueTyped
, true);
1089
AttributeIdentityConstraints(attdef.Name.Name, attdef.Name.Namespace, attdef.
DefaultValueTyped
, attdef.DefaultValueRaw, datatype);
1209
if (contextElementDecl.
DefaultValueTyped
!= null)
1424
if (stringValue.Length == 0 && currentElementDecl.
DefaultValueTyped
!= null)
1443
typedVal = currentElementDecl.
DefaultValueTyped
;
1666
Debug.Assert(elementDecl.
DefaultValueTyped
!= null);
1726
elementDeclXsi.DefaultValueTyped = elementDecl.
DefaultValueTyped
;
1818
Debug.Assert(elementDecl.ContentValidator!.ContentType == XmlSchemaContentType.Mixed && elementDecl.
DefaultValueTyped
!= null);
1826
return elementDecl.
DefaultValueTyped
;
System\Xml\Schema\XsdValidator.cs (5)
344
if (!(stringValue.Length == 0 && context.ElementDecl.
DefaultValueTyped
!= null))
428
if (context.IsNill && elementDecl.
DefaultValueTyped
!= null)
453
if (reader.IsEmptyElement && !context.IsNill && context.ElementDecl.
DefaultValueTyped
!= null)
455
reader.TypedValueObject = UnWrapUnion(context.ElementDecl.
DefaultValueTyped
);
544
AttributeIdentityConstraints(attdef.Name.Name, attdef.Name.Namespace, UnWrapUnion(attdef.
DefaultValueTyped
), attdef.DefaultValueRaw, attdef);