10 writes to DefaultValueTyped
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\schema\dtdvalidator.cs (1)
544attdef.DefaultValueTyped = dtype.ParseValue(value, readerAdapter.NameTable, readerAdapter.NamespaceResolver);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (4)
2097decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true); 2106decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true); 2161decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true); 2387decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xe), true);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (3)
2607decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xa), true); 2825decl.DefaultValueTyped = decl.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xe), true); 2830decl.DefaultValueTyped = DatatypeImplementation.AnySimpleType.Datatype.ParseValue(decl.DefaultValueRaw, NameTable, new SchemaNamespaceManager(xe));
FrameworkFork\Microsoft.Xml\Xml\schema\xdrvalidator.cs (1)
615attdef.DefaultValueTyped = typedValue;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (1)
1746elementDeclXsi.DefaultValueTyped = elementDecl.DefaultValueTyped;
35 references to DefaultValueTyped
dotnet-svcutil-lib (35)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (1)
9397attr.typedValue = attrDef.DefaultValueTyped;
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (1)
472XsdSimpleValue simpleValue = attributeDef.DefaultValueTyped as XsdSimpleValue;
FrameworkFork\Microsoft.Xml\Xml\schema\dtdvalidator.cs (3)
164if (Reader.IsEmptyElement && context.ElementDecl.DefaultValueTyped != null) 166Reader.TypedValueObject = context.ElementDecl.DefaultValueTyped; 580object typedValue = attdef.DefaultValueTyped;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaAttDef.cs (1)
109get { return ((SchemaAttDef)this).DefaultValueTyped; }
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (4)
2513if (!datatype.IsEqual(decl.DefaultValueTyped, refFixedValue)) 3241object baseFixedValue = baseDecl.DefaultValueTyped; 3242object derivedFixedValue = derivedDecl.DefaultValueTyped; 3264XsdSimpleValue simpleFixedValue = baseDecl.DefaultValueTyped as XsdSimpleValue;
FrameworkFork\Microsoft.Xml\Xml\schema\XdrBuilder.cs (3)
1695if (decl._Default != null || pAttdef.DefaultValueTyped != null) 1714if (pAttdef.DefaultValueTyped != null) 1719else if (pAttdef.DefaultValueTyped != null)
FrameworkFork\Microsoft.Xml\Xml\schema\xdrvalidator.cs (2)
248if (reader.IsEmptyElement && !context.IsNill && context.ElementDecl.DefaultValueTyped != null) 250reader.TypedValueObject = context.ElementDecl.DefaultValueTyped;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaInfo.cs (1)
164return _schemaElement != null && _schemaElement.ElementDecl.DefaultValueTyped != null;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (14)
834if (_context.ElementDecl.DefaultValueTyped != null) 898if (_context.ElementDecl.DefaultValueTyped != null) 1061if (attdef.DefaultValueTyped == null) 1093XsdSimpleValue simpleValue = attdef.DefaultValueTyped as XsdSimpleValue; 1100attrValidInfo.typedAttributeValue = attdef.DefaultValueTyped; 1115CheckTokenizedTypes(datatype, attdef.DefaultValueTyped, true); 1118AttributeIdentityConstraints(attdef.Name.Name, attdef.Name.Namespace, attdef.DefaultValueTyped, attdef.DefaultValueRaw, datatype); 1238if (contextElementDecl.DefaultValueTyped != null) 1449if (stringValue.Length == 0 && currentElementDecl.DefaultValueTyped != null) 1468typedVal = currentElementDecl.DefaultValueTyped; 1683Debug.Assert(elementDecl.DefaultValueTyped != null); 1746elementDeclXsi.DefaultValueTyped = elementDecl.DefaultValueTyped; 1837Debug.Assert(elementDecl.ContentValidator.ContentType == XmlSchemaContentType.Mixed && elementDecl.DefaultValueTyped != null); 1845return elementDecl.DefaultValueTyped;
FrameworkFork\Microsoft.Xml\Xml\schema\xsdvalidator.cs (5)
349if (!(stringValue.Length == 0 && context.ElementDecl.DefaultValueTyped != null)) 436if (context.IsNill && elementDecl.DefaultValueTyped != null) 461if (reader.IsEmptyElement && !context.IsNill && context.ElementDecl.DefaultValueTyped != null) 463reader.TypedValueObject = UnWrapUnion(context.ElementDecl.DefaultValueTyped); 552AttributeIdentityConstraints(attdef.Name.Name, attdef.Name.Namespace, UnWrapUnion(attdef.DefaultValueTyped), attdef.DefaultValueRaw, attdef);