Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Validate()
XmlReader
System.Xml.Schema.XmlSchemaElement.Validate
(
XmlReader
reader
,
XmlResolver
resolver
,
XmlSchemaSet
schemaSet
,
ValidationEventHandler
valEventHandler
)
inline
package
Definition at line
338
of file
XmlSchemaElement.cs
.
339
{
340
if
(
schemaSet
!=
null
)
341
{
342
XmlReaderSettings
xmlReaderSettings
=
new
XmlReaderSettings();
343
xmlReaderSettings.ValidationType
= ValidationType.Schema;
344
xmlReaderSettings.Schemas
=
schemaSet
;
345
xmlReaderSettings.ValidationEventHandler
+=
valEventHandler
;
346
return
new
XsdValidatingReader(reader,
resolver
,
xmlReaderSettings
,
this
);
347
}
348
return
null
;
349
}
System.Xml.ValueHandleType.Dictionary
@ Dictionary
References
System.Xml.Dictionary
.
System
Xml
Schema
XmlSchemaElement
Generated by
1.10.0