18 references to ReaderQuotas
System.ServiceModel (18)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (2)
410if (null != specificElement.ReaderQuotas) 412FillReaderQuotas(instance, specificElement.ReaderQuotas);
System\ServiceModel\Channels\MtomMessageEncodingBindingElement.cs (7)
189return new MtomMessageEncoderFactory(MessageVersion, WriteEncoding, this.MaxReadPoolSize, this.MaxWritePoolSize, this.MaxBufferSize, this.ReaderQuotas); 251if (this.readerQuotas.MaxStringContentLength != mtom.ReaderQuotas.MaxStringContentLength) 253if (this.readerQuotas.MaxArrayLength != mtom.ReaderQuotas.MaxArrayLength) 255if (this.readerQuotas.MaxBytesPerRead != mtom.ReaderQuotas.MaxBytesPerRead) 257if (this.readerQuotas.MaxDepth != mtom.ReaderQuotas.MaxDepth) 259if (this.readerQuotas.MaxNameTableCharCount != mtom.ReaderQuotas.MaxNameTableCharCount) 282return (!EncoderDefaults.IsDefaultReaderQuotas(this.ReaderQuotas));
System\ServiceModel\Configuration\MtomMessageEncodingElement.cs (2)
28this.ReaderQuotas.ApplyConfiguration(binding.ReaderQuotas); 65this.ReaderQuotas.InitializeFrom(binding.ReaderQuotas);
System\ServiceModel\HttpBindingBase.cs (2)
159value.CopyTo(this.mtomEncoding.ReaderQuotas); 357this.ReaderQuotas = mtom.ReaderQuotas;
System\ServiceModel\WSDualHttpBinding.cs (2)
145value.CopyTo(mtomEncoding.ReaderQuotas); 258this.ReaderQuotas = mtom.ReaderQuotas;
System\ServiceModel\WSHttpBindingBase.cs (2)
131value.CopyTo(mtomEncoding.ReaderQuotas); 247this.ReaderQuotas = mtom.ReaderQuotas;
System\ServiceModel\WSMessageEncoding.cs (1)
26textEncoding.ReaderQuotas.CopyTo(mtomEncoding.ReaderQuotas);