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

◆ DtdProcessing

DtdProcessing System.Xml.XmlReaderSettings.DtdProcessing
getset

Definition at line 236 of file XmlReaderSettings.cs.

237 {
238 get
239 {
240 return _dtdProcessing;
241 }
242 set
243 {
244 CheckReadOnly("DtdProcessing");
245 if ((uint)value > 2u)
246 {
247 throw new ArgumentOutOfRangeException("value");
248 }
250 }
251 }
void CheckReadOnly(string propertyName)

Referenced by System.Xml.XmlSqlBinaryReader.XmlSqlBinaryReader(), System.Xml.XmlTextReaderImpl.XmlTextReaderImpl(), System.Xml.Schema.XmlSchemaSet.Add(), and System.Xml.XmlReaderSettings.AddConformanceWrapper().