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

◆ ValidationType

ValidationType System.Xml.XmlReaderSettings.ValidationType
getset

Definition at line 266 of file XmlReaderSettings.cs.

267 {
268 get
269 {
270 return _validationType;
271 }
272 set
273 {
274 CheckReadOnly("ValidationType");
276 if ((uint)value > 4u)
277 {
278 throw new ArgumentOutOfRangeException("value");
279 }
281 }
282 }
AddValidationFunc _addValidationFunc
XmlReader AddValidationInternal(XmlReader reader, XmlResolver resolver, bool addConformanceWrapper)
void CheckReadOnly(string propertyName)

Referenced by System.Xml.XmlReader.CreateSqlReader().