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)
28private XmlDictionaryReaderQuotaTypes _modifiedQuotas; 35XmlDictionaryReaderQuotaTypes.MaxDepth | XmlDictionaryReaderQuotaTypes.MaxStringContentLength | XmlDictionaryReaderQuotaTypes.MaxArrayLength | XmlDictionaryReaderQuotaTypes.MaxBytesPerRead | XmlDictionaryReaderQuotaTypes.MaxNameTableCharCount); 46private 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; 173public 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)
19if (IsDefaultQuota(bufferedReadQuotas, XmlDictionaryReaderQuotaTypes.MaxStringContentLength)) 24if (IsDefaultQuota(bufferedReadQuotas, XmlDictionaryReaderQuotaTypes.MaxArrayLength)) 29if (IsDefaultQuota(bufferedReadQuotas, XmlDictionaryReaderQuotaTypes.MaxBytesPerRead)) 34if (IsDefaultQuota(bufferedReadQuotas, XmlDictionaryReaderQuotaTypes.MaxNameTableCharCount)) 39if (IsDefaultQuota(bufferedReadQuotas, XmlDictionaryReaderQuotaTypes.MaxDepth)) 47private static bool IsDefaultQuota(XmlDictionaryReaderQuotas quotas, XmlDictionaryReaderQuotaTypes quotaType) 51case XmlDictionaryReaderQuotaTypes.MaxDepth: 52case XmlDictionaryReaderQuotaTypes.MaxStringContentLength: 53case XmlDictionaryReaderQuotaTypes.MaxArrayLength: 54case XmlDictionaryReaderQuotaTypes.MaxBytesPerRead: 55case XmlDictionaryReaderQuotaTypes.MaxNameTableCharCount: