16 references to ReaderQuotas
dotnet-svcutil-lib (16)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TextMessageEncodingBindingElement.cs (6)
150return new TextMessageEncoderFactory(MessageVersion, WriteEncoding, this.MaxReadPoolSize, this.MaxWritePoolSize, this.ReaderQuotas); 188if (_readerQuotas.MaxStringContentLength != text.ReaderQuotas.MaxStringContentLength) 190if (_readerQuotas.MaxArrayLength != text.ReaderQuotas.MaxArrayLength) 192if (_readerQuotas.MaxBytesPerRead != text.ReaderQuotas.MaxBytesPerRead) 194if (_readerQuotas.MaxDepth != text.ReaderQuotas.MaxDepth) 196if (_readerQuotas.MaxNameTableCharCount != text.ReaderQuotas.MaxNameTableCharCount)
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpBindingBase.cs (3)
114return _textEncoding.ReaderQuotas; 124value.CopyTo(_textEncoding.ReaderQuotas); 293this.ReaderQuotas = text.ReaderQuotas;
FrameworkFork\System.ServiceModel\System\ServiceModel\UdpBinding.cs (3)
37this.ReaderQuotas = encoding.ReaderQuotas; 116get { return _textEncoding.ReaderQuotas; } 123value.CopyTo(_textEncoding.ReaderQuotas);
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBindingBase.cs (3)
101get { return _textEncoding.ReaderQuotas; } 106value.CopyTo(_textEncoding.ReaderQuotas); 199this.ReaderQuotas = text.ReaderQuotas;
FrameworkFork\System.ServiceModel\System\ServiceModel\WSMessageEncoding.cs (1)
27textEncoding.ReaderQuotas.CopyTo(mtomEncoding.ReaderQuotas);