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

◆ SendValidationEventNoThrow()

void System.Xml.Schema.BaseProcessor.SendValidationEventNoThrow ( XmlSchemaException e,
XmlSeverityType severity )
inlineprotectedinherited

Definition at line 260 of file BaseProcessor.cs.

261 {
262 if (severity == XmlSeverityType.Error)
263 {
264 _errorCount++;
265 }
266 if (_eventHandler != null)
267 {
268 _eventHandler(null, new ValidationEventArgs(e, severity));
269 }
270 }
readonly ValidationEventHandler _eventHandler

References System.Xml.Schema.BaseProcessor._errorCount, System.Xml.Schema.BaseProcessor._eventHandler, and System.Xml.Dictionary.

Referenced by System.Xml.Schema.SchemaCollectionPreprocessor.LoadExternals().