13 instantiations of SchemaElementDecl
dotnet-svcutil-lib (13)
FrameworkFork\Microsoft.Xml\Xml\schema\DatatypeImplementation.cs (3)
183simpleType.ElementDecl = new SchemaElementDecl(dataType); 335tempNormalizedStringTypeV1Compat.ElementDecl = new SchemaElementDecl(c_normalizedStringV1Compat); 349tempTokenTypeV1Compat.ElementDecl = new SchemaElementDecl(c_tokenV1Compat);
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (2)
670elementDecl = new SchemaElementDecl(elementName, elementName.Namespace); 967elementDecl = new SchemaElementDecl(name, name.Namespace);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (2)
612SchemaElementDecl decl = new SchemaElementDecl(); 761SchemaElementDecl decl = new SchemaElementDecl();
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaElementDecl.cs (2)
30internal static readonly SchemaElementDecl Empty = new SchemaElementDecl(); 55SchemaElementDecl anyTypeElementDecl = new SchemaElementDecl();
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (2)
697SchemaElementDecl decl = new SchemaElementDecl(); 833SchemaElementDecl decl = new SchemaElementDecl();
FrameworkFork\Microsoft.Xml\Xml\schema\XdrBuilder.cs (2)
718builder._ElementDef._ElementDecl = new SchemaElementDecl(); 1198ed = new SchemaElementDecl(qname, prefix);
92 references to SchemaElementDecl
dotnet-svcutil-lib (92)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (4)
599SchemaElementDecl ed = GetSchemaElementDecl(elem); 627private SchemaElementDecl GetSchemaElementDecl(XmlElement elem) 635SchemaElementDecl elemDecl; 1619SchemaElementDecl ed = GetSchemaElementDecl(elem);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (2)
666SchemaElementDecl elementDecl = (SchemaElementDecl)elementDecls.Value;
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (3)
665SchemaElementDecl elementDecl; 764private void ParseAttlistType(SchemaAttDef attrDef, SchemaElementDecl elementDecl, bool ignoreErrors) 949SchemaElementDecl elementDecl = null;
FrameworkFork\Microsoft.Xml\Xml\schema\dtdvalidator.cs (1)
238SchemaElementDecl elementDecl = schemaInfo.GetElementDecl(elementName);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (4)
612SchemaElementDecl decl = new SchemaElementDecl(); 761SchemaElementDecl decl = new SchemaElementDecl(); 2270SchemaElementDecl decl = null; 2419xe.ElementDecl = SchemaElementDecl.Empty;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaElementDecl.cs (7)
30internal static readonly SchemaElementDecl Empty = new SchemaElementDecl(); 53internal static SchemaElementDecl CreateAnyTypeElementDecl() 55SchemaElementDecl anyTypeElementDecl = new SchemaElementDecl(); 67get { return ((SchemaElementDecl)this).Prefix; } 72get { return ((SchemaElementDecl)this).Name.Name; } 124internal SchemaElementDecl Clone() 126return (SchemaElementDecl)MemberwiseClone();
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaInfo.cs (24)
32private Dictionary<XmlQualifiedName, SchemaElementDecl> _elementDecls = new Dictionary<XmlQualifiedName, SchemaElementDecl>(); 33private Dictionary<XmlQualifiedName, SchemaElementDecl> _undeclaredElementDecls = new Dictionary<XmlQualifiedName, SchemaElementDecl>(); 47private Dictionary<XmlQualifiedName, SchemaElementDecl> _elementDeclsByType = new Dictionary<XmlQualifiedName, SchemaElementDecl>(); 68internal Dictionary<XmlQualifiedName, SchemaElementDecl> ElementDecls 73internal Dictionary<XmlQualifiedName, SchemaElementDecl> UndeclaredElementDecls 113internal Dictionary<XmlQualifiedName, SchemaElementDecl> ElementDeclsByType 141internal SchemaElementDecl GetElementDecl(XmlQualifiedName qname) 143SchemaElementDecl elemDecl; 151internal SchemaElementDecl GetTypeDecl(XmlQualifiedName qname) 153SchemaElementDecl elemDecl; 164SchemaElementDecl ed = GetElementDecl(qname); 184SchemaElementDecl ed = GetElementDecl(qname); 202internal SchemaAttDef GetAttributeXdr(SchemaElementDecl ed, XmlQualifiedName qname) 224internal SchemaAttDef GetAttributeXsd(SchemaElementDecl ed, XmlQualifiedName qname, XmlSchemaObject partialValidationType, out AttributeMatchState attributeMatchState) 305internal SchemaAttDef GetAttributeXsd(SchemaElementDecl ed, XmlQualifiedName qname, ref bool skip) 359foreach (KeyValuePair<XmlQualifiedName, SchemaElementDecl> entry in sinfo._elementDecls) 366foreach (KeyValuePair<XmlQualifiedName, SchemaElementDecl> entry in sinfo._elementDeclsByType) 391Dictionary<XmlQualifiedName, SchemaElementDecl> elements = _elementDecls; 394foreach (SchemaElementDecl e in elements.Values) 431SchemaElementDecl elementDecl; 441foreach (SchemaElementDecl elemDecl in _elementDecls.Values)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (4)
697SchemaElementDecl decl = new SchemaElementDecl(); 833SchemaElementDecl decl = new SchemaElementDecl(); 2701SchemaElementDecl decl = null; 2862xe.ElementDecl = SchemaElementDecl.Empty;
FrameworkFork\Microsoft.Xml\Xml\schema\validationstate.cs (2)
31public SchemaElementDecl ElementDecl; // ElementDecl 32public SchemaElementDecl ElementDeclBeforeXsi; //elementDecl before its changed by that of xsi:type's
FrameworkFork\Microsoft.Xml\Xml\schema\XdrBuilder.cs (6)
66internal SchemaElementDecl _ElementDecl; 118internal SchemaElementDecl _ElementDecl; // Element Information 705foreach (SchemaElementDecl ed in builder._UndeclaredElements.Values) 910SchemaElementDecl ed = builder._ElementDef._ElementDecl; 1195SchemaElementDecl ed = (SchemaElementDecl)builder._UndeclaredElements[qname];
FrameworkFork\Microsoft.Xml\Xml\schema\xdrvalidator.cs (2)
195private SchemaElementDecl ThoroughGetElementDecl() 225SchemaElementDecl elementDecl = schemaInfo.GetElementDecl(elementName);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (2)
57s_untypedAnyType.ElementDecl = SchemaElementDecl.CreateAnyTypeElementDecl(); 79localAnyType.ElementDecl = SchemaElementDecl.CreateAnyTypeElementDecl();
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaElement.cs (2)
45private SchemaElementDecl _elementDecl; 334internal SchemaElementDecl ElementDecl
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaType.cs (2)
28private volatile SchemaElementDecl _elementDecl; 271internal SchemaElementDecl ElementDecl
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (21)
438SchemaElementDecl elementDecl = FastGetElementDecl(elementName, particle); 553SchemaElementDecl currentElementDecl = _context.ElementDecl; 755SchemaElementDecl currentElementDecl = _context.ElementDecl; 946SchemaElementDecl currentElementDecl = _context.ElementDecl; 1017SchemaElementDecl elementDecl = _context.ElementDecl; 1052SchemaElementDecl currentElementDecl = _context.ElementDecl; 1205SchemaElementDecl contextElementDecl = _context.ElementDecl; 1446SchemaElementDecl currentElementDecl = _context.ElementDecl; 1451SchemaElementDecl declBeforeXsi = _context.ElementDeclBeforeXsi; 1491SchemaElementDecl currentElementDecl = _context.ElementDecl; 1607private SchemaElementDecl FastGetElementDecl(XmlQualifiedName elementName, object particle) 1609SchemaElementDecl elementDecl = null; 1658private SchemaElementDecl CheckXsiTypeAndNil(SchemaElementDecl elementDecl, string xsiType, string xsiNil, ref bool declFound) 1703SchemaElementDecl elementDeclXsi = _compiledSchemaInfo.GetTypeDecl(xsiTypeName); 1836SchemaElementDecl elementDecl = _context.ElementDecl; 2128private void CheckRequiredAttributes(SchemaElementDecl currentElementDecl) 2146SchemaElementDecl beforeXsiDecl = _context.ElementDeclBeforeXsi; 2147SchemaElementDecl currentDecl = _context.ElementDecl; 2187SchemaElementDecl currentElementDecl = _context.ElementDecl; 2248SchemaElementDecl currentElementDecl = _context.ElementDecl;
FrameworkFork\Microsoft.Xml\Xml\schema\xsdvalidator.cs (6)
219SchemaElementDecl elementDecl = FastGetElementDecl(particle); 366private SchemaElementDecl FastGetElementDecl(object particle) 368SchemaElementDecl elementDecl = null; 385private SchemaElementDecl ThoroughGetElementDecl(SchemaElementDecl elementDecl, XmlQualifiedName xsiType, string xsiNil) 407SchemaElementDecl elementDeclXsi;