24 references to XmlDictionaryReaderQuotaTypes
dotnet-svcutil-lib (24)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryReaderQuotas.cs (13)
31
private
XmlDictionaryReaderQuotaTypes
_modifiedQuotas = 0x00;
38
XmlDictionaryReaderQuotaTypes
.MaxDepth |
XmlDictionaryReaderQuotaTypes
.MaxStringContentLength |
XmlDictionaryReaderQuotaTypes
.MaxArrayLength |
XmlDictionaryReaderQuotaTypes
.MaxBytesPerRead |
XmlDictionaryReaderQuotaTypes
.MaxNameTableCharCount);
49
private XmlDictionaryReaderQuotas(int maxDepth, int maxStringContentLength, int maxArrayLength, int maxBytesPerRead, int maxNameTableCharCount,
XmlDictionaryReaderQuotaTypes
modifiedQuotas)
102
_modifiedQuotas |=
XmlDictionaryReaderQuotaTypes
.MaxStringContentLength;
120
_modifiedQuotas |=
XmlDictionaryReaderQuotaTypes
.MaxArrayLength;
139
_modifiedQuotas |=
XmlDictionaryReaderQuotaTypes
.MaxBytesPerRead;
158
_modifiedQuotas |=
XmlDictionaryReaderQuotaTypes
.MaxDepth;
177
_modifiedQuotas |=
XmlDictionaryReaderQuotaTypes
.MaxNameTableCharCount;
181
public
XmlDictionaryReaderQuotaTypes
ModifiedQuotas
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\EncoderHelpers.cs (11)
18
if (IsDefaultQuota(bufferedReadQuotas,
XmlDictionaryReaderQuotaTypes
.MaxStringContentLength))
23
if (IsDefaultQuota(bufferedReadQuotas,
XmlDictionaryReaderQuotaTypes
.MaxArrayLength))
28
if (IsDefaultQuota(bufferedReadQuotas,
XmlDictionaryReaderQuotaTypes
.MaxBytesPerRead))
33
if (IsDefaultQuota(bufferedReadQuotas,
XmlDictionaryReaderQuotaTypes
.MaxNameTableCharCount))
38
if (IsDefaultQuota(bufferedReadQuotas,
XmlDictionaryReaderQuotaTypes
.MaxDepth))
46
private static bool IsDefaultQuota(XmlDictionaryReaderQuotas quotas,
XmlDictionaryReaderQuotaTypes
quotaType)
50
case
XmlDictionaryReaderQuotaTypes
.MaxDepth:
51
case
XmlDictionaryReaderQuotaTypes
.MaxStringContentLength:
52
case
XmlDictionaryReaderQuotaTypes
.MaxArrayLength:
53
case
XmlDictionaryReaderQuotaTypes
.MaxBytesPerRead:
54
case
XmlDictionaryReaderQuotaTypes
.MaxNameTableCharCount: