|
Terraria v1.4.4.9
Terraria source code documentation
|
Public Member Functions | |
| XmlDictionaryReaderQuotas () | |
| void | CopyTo (XmlDictionaryReaderQuotas quotas) |
Package Functions | |
| void | InternalCopyTo (XmlDictionaryReaderQuotas quotas) |
| void | MakeReadOnly () |
Properties | |
| static XmlDictionaryReaderQuotas | Max [get] |
| int | MaxStringContentLength [get, set] |
| int | MaxArrayLength [get, set] |
| int | MaxBytesPerRead [get, set] |
| int | MaxDepth [get, set] |
| int | MaxNameTableCharCount [get, set] |
| XmlDictionaryReaderQuotaTypes | ModifiedQuotas [get] |
Private Member Functions | |
| XmlDictionaryReaderQuotas (int maxDepth, int maxStringContentLength, int maxArrayLength, int maxBytesPerRead, int maxNameTableCharCount, XmlDictionaryReaderQuotaTypes modifiedQuotas) | |
Private Attributes | |
| bool | _readOnly |
| int | _maxStringContentLength |
| int | _maxArrayLength |
| int | _maxDepth |
| int | _maxNameTableCharCount |
| int | _maxBytesPerRead |
| XmlDictionaryReaderQuotaTypes | _modifiedQuotas |
Static Private Attributes | |
| const int | DefaultMaxDepth = 32 |
| const int | DefaultMaxStringContentLength = 8192 |
| const int | DefaultMaxArrayLength = 16384 |
| const int | DefaultMaxBytesPerRead = 4096 |
| const int | DefaultMaxNameTableCharCount = 16384 |
| static readonly XmlDictionaryReaderQuotas | s_maxQuota = new XmlDictionaryReaderQuotas(int.MaxValue, int.MaxValue, int.MaxValue, int.MaxValue, int.MaxValue, XmlDictionaryReaderQuotaTypes.MaxDepth | XmlDictionaryReaderQuotaTypes.MaxStringContentLength | XmlDictionaryReaderQuotaTypes.MaxArrayLength | XmlDictionaryReaderQuotaTypes.MaxBytesPerRead | XmlDictionaryReaderQuotaTypes.MaxNameTableCharCount) |
Definition at line 6 of file XmlDictionaryReaderQuotas.cs.