24 references to XmlDictionaryReaderQuotaTypes
dotnet-svcutil-lib (24)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryReaderQuotas.cs (13)
31private XmlDictionaryReaderQuotaTypes _modifiedQuotas = 0x00; 38XmlDictionaryReaderQuotaTypes.MaxDepth | XmlDictionaryReaderQuotaTypes.MaxStringContentLength | XmlDictionaryReaderQuotaTypes.MaxArrayLength | XmlDictionaryReaderQuotaTypes.MaxBytesPerRead | XmlDictionaryReaderQuotaTypes.MaxNameTableCharCount); 49private 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; 181public XmlDictionaryReaderQuotaTypes ModifiedQuotas
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\EncoderHelpers.cs (11)
18if (IsDefaultQuota(bufferedReadQuotas, XmlDictionaryReaderQuotaTypes.MaxStringContentLength)) 23if (IsDefaultQuota(bufferedReadQuotas, XmlDictionaryReaderQuotaTypes.MaxArrayLength)) 28if (IsDefaultQuota(bufferedReadQuotas, XmlDictionaryReaderQuotaTypes.MaxBytesPerRead)) 33if (IsDefaultQuota(bufferedReadQuotas, XmlDictionaryReaderQuotaTypes.MaxNameTableCharCount)) 38if (IsDefaultQuota(bufferedReadQuotas, XmlDictionaryReaderQuotaTypes.MaxDepth)) 46private static bool IsDefaultQuota(XmlDictionaryReaderQuotas quotas, XmlDictionaryReaderQuotaTypes quotaType) 50case XmlDictionaryReaderQuotaTypes.MaxDepth: 51case XmlDictionaryReaderQuotaTypes.MaxStringContentLength: 52case XmlDictionaryReaderQuotaTypes.MaxArrayLength: 53case XmlDictionaryReaderQuotaTypes.MaxBytesPerRead: 54case XmlDictionaryReaderQuotaTypes.MaxNameTableCharCount: