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

◆ MaxStringContentLength

int System.Xml.XmlDictionaryReaderQuotas.MaxStringContentLength
getset

Definition at line 37 of file XmlDictionaryReaderQuotas.cs.

38 {
39 get
40 {
42 }
43 set
44 {
45 if (_readOnly)
46 {
48 }
49 if (value <= 0)
50 {
52 }
54 _modifiedQuotas |= XmlDictionaryReaderQuotaTypes.MaxStringContentLength;
55 }
56 }
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.ReadContentAsString(), System.Xml.XmlDictionaryReader.ReadContentAsString(), System.Xml.XmlBinaryReader.ReadElementContentAsString(), and System.Xml.XmlDictionaryReader.ReadString().