Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Push()

void System.Xml.Schema.XmlSchemaValidator.Push ( XmlQualifiedName elementName)
inlineprivate

Definition at line 1448 of file XmlSchemaValidator.cs.

1449 {
1450 _context = (ValidationState)_validationStack.Push();
1451 if (_context == null)
1452 {
1453 _context = new ValidationState();
1455 }
1456 _context.LocalName = elementName.Name;
1457 _context.Namespace = elementName.Namespace;
1458 _context.HasMatched = false;
1459 _context.IsNill = false;
1460 _context.IsDefault = false;
1463 _context.Validity = XmlSchemaValidity.NotKnown;
1467 _context.Constr = null;
1468 }
void AddToTop(object o)
Definition HWStack.cs:90
object Push()
Definition HWStack.cs:52
XmlSchemaContentProcessing _processContents

References System.Xml.Schema.XmlSchemaValidator._context, System.Xml.Schema.XmlSchemaValidator._processContents, System.Xml.Schema.XmlSchemaValidator._validationStack, System.Xml.HWStack.AddToTop(), System.Xml.Dictionary, System.Xml.XmlQualifiedName.Name, System.Xml.XmlQualifiedName.Namespace, and System.Xml.HWStack.Push().

Referenced by System.Xml.Schema.XmlSchemaValidator.Init(), and System.Xml.Schema.XmlSchemaValidator.ValidateElement().