27 references to XmlDictionaryReaderQuotaTypes
netstandard (1)
netstandard.cs (1)
2467
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.
XmlDictionaryReaderQuotaTypes
))]
System.Private.DataContractSerialization (13)
System\Xml\XmlDictionaryReaderQuotas.cs (13)
28
private
XmlDictionaryReaderQuotaTypes
_modifiedQuotas;
35
XmlDictionaryReaderQuotaTypes
.MaxDepth |
XmlDictionaryReaderQuotaTypes
.MaxStringContentLength |
XmlDictionaryReaderQuotaTypes
.MaxArrayLength |
XmlDictionaryReaderQuotaTypes
.MaxBytesPerRead |
XmlDictionaryReaderQuotaTypes
.MaxNameTableCharCount);
46
private XmlDictionaryReaderQuotas(int maxDepth, int maxStringContentLength, int maxArrayLength, int maxBytesPerRead, int maxNameTableCharCount,
XmlDictionaryReaderQuotaTypes
modifiedQuotas)
98
_modifiedQuotas |=
XmlDictionaryReaderQuotaTypes
.MaxStringContentLength;
115
_modifiedQuotas |=
XmlDictionaryReaderQuotaTypes
.MaxArrayLength;
133
_modifiedQuotas |=
XmlDictionaryReaderQuotaTypes
.MaxBytesPerRead;
151
_modifiedQuotas |=
XmlDictionaryReaderQuotaTypes
.MaxDepth;
169
_modifiedQuotas |=
XmlDictionaryReaderQuotaTypes
.MaxNameTableCharCount;
173
public
XmlDictionaryReaderQuotaTypes
ModifiedQuotas
System.Runtime.Serialization (1)
System.Runtime.Serialization.cs (1)
47
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.
XmlDictionaryReaderQuotaTypes
))]
System.Runtime.Serialization.Xml (1)
artifacts\obj\System.Runtime.Serialization.Xml\Debug\net10.0\System.Runtime.Serialization.Xml.Forwards.cs (1)
33
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.
XmlDictionaryReaderQuotaTypes
))]
System.ServiceModel.Primitives (11)
System\ServiceModel\Channels\EncoderHelpers.cs (11)
19
if (IsDefaultQuota(bufferedReadQuotas,
XmlDictionaryReaderQuotaTypes
.MaxStringContentLength))
24
if (IsDefaultQuota(bufferedReadQuotas,
XmlDictionaryReaderQuotaTypes
.MaxArrayLength))
29
if (IsDefaultQuota(bufferedReadQuotas,
XmlDictionaryReaderQuotaTypes
.MaxBytesPerRead))
34
if (IsDefaultQuota(bufferedReadQuotas,
XmlDictionaryReaderQuotaTypes
.MaxNameTableCharCount))
39
if (IsDefaultQuota(bufferedReadQuotas,
XmlDictionaryReaderQuotaTypes
.MaxDepth))
47
private static bool IsDefaultQuota(XmlDictionaryReaderQuotas quotas,
XmlDictionaryReaderQuotaTypes
quotaType)
51
case
XmlDictionaryReaderQuotaTypes
.MaxDepth:
52
case
XmlDictionaryReaderQuotaTypes
.MaxStringContentLength:
53
case
XmlDictionaryReaderQuotaTypes
.MaxArrayLength:
54
case
XmlDictionaryReaderQuotaTypes
.MaxBytesPerRead:
55
case
XmlDictionaryReaderQuotaTypes
.MaxNameTableCharCount: