1 write to readerQuotas
System.ServiceModel (1)
System\ServiceModel\Channels\MtomMessageEncoder.cs (1)
113this.readerQuotas = new XmlDictionaryReaderQuotas();
7 references to readerQuotas
System.ServiceModel (7)
System\ServiceModel\Channels\MtomMessageEncoder.cs (7)
114quotas.CopyTo(this.readerQuotas); 116this.bufferedReadReaderQuotas = EncoderHelpers.GetBufferedReadQuotas(this.readerQuotas); 169return readerQuotas; 538((IXmlMtomReaderInitializer)xmlReader).SetInput(stream, MtomMessageEncoderFactory.GetSupportedEncodings(), contentType, this.readerQuotas, this.maxBufferSize, onStreamedReaderClose); 542xmlReader = XmlDictionaryReader.CreateMtomReader(stream, MtomMessageEncoderFactory.GetSupportedEncodings(), contentType, this.readerQuotas, this.maxBufferSize, onStreamedReaderClose); 553((IXmlTextReaderInitializer)xmlReader).SetInput(stream, TextMessageEncoderFactory.GetEncodingFromContentType(contentType, this.contentEncodingMap), this.readerQuotas, onStreamedReaderClose); 557xmlReader = XmlDictionaryReader.CreateTextReader(stream, TextMessageEncoderFactory.GetEncodingFromContentType(contentType, this.contentEncodingMap), this.readerQuotas, onStreamedReaderClose);