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

◆ SendValidationEvent()

void System.Xml.Schema.XmlSchemaCollection.SendValidationEvent ( XmlSchemaException e)
inlineprivate

Definition at line 323 of file XmlSchemaCollection.cs.

324 {
325 if (_validationEventHandler != null)
326 {
327 _validationEventHandler(this, new ValidationEventArgs(e));
328 return;
329 }
330 throw e;
331 }

References System.Xml.Schema.XmlSchemaCollection._validationEventHandler.

Referenced by System.Xml.Schema.XmlSchemaCollection.Add().