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

◆ MaxDepth

int System.Xml.XmlDictionaryReaderQuotas.MaxDepth
getset

Definition at line 103 of file XmlDictionaryReaderQuotas.cs.

104 {
105 get
106 {
107 return _maxDepth;
108 }
109 set
110 {
111 if (_readOnly)
112 {
114 }
115 if (value <= 0)
116 {
118 }
120 _modifiedQuotas |= XmlDictionaryReaderQuotaTypes.MaxDepth;
121 }
122 }
static string QuotaIsReadOnly
Definition SR.cs:264
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string QuotaMustBePositive
Definition SR.cs:262
Definition SR.cs:7
XmlDictionaryReaderQuotaTypes _modifiedQuotas

Referenced by System.Xml.XmlBaseReader.EnterScope().