24 references to ReaderQuotas
System.ServiceModel (21)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (2)
398if (null != specificElement.ReaderQuotas) 400FillReaderQuotas(instance, specificElement.ReaderQuotas);
System\ServiceModel\Channels\TextMessageEncodingBindingElement.cs (7)
166return new TextMessageEncoderFactory(MessageVersion, WriteEncoding, this.MaxReadPoolSize, this.MaxWritePoolSize, this.ReaderQuotas); 223if (this.readerQuotas.MaxStringContentLength != text.ReaderQuotas.MaxStringContentLength) 225if (this.readerQuotas.MaxArrayLength != text.ReaderQuotas.MaxArrayLength) 227if (this.readerQuotas.MaxBytesPerRead != text.ReaderQuotas.MaxBytesPerRead) 229if (this.readerQuotas.MaxDepth != text.ReaderQuotas.MaxDepth) 231if (this.readerQuotas.MaxNameTableCharCount != text.ReaderQuotas.MaxNameTableCharCount) 245return (!EncoderDefaults.IsDefaultReaderQuotas(this.ReaderQuotas));
System\ServiceModel\Configuration\TextMessageEncodingElement.cs (2)
28this.ReaderQuotas.ApplyConfiguration(binding.ReaderQuotas); 63this.ReaderQuotas.InitializeFrom(binding.ReaderQuotas);
System\ServiceModel\HttpBindingBase.cs (3)
148return this.textEncoding.ReaderQuotas; 158value.CopyTo(this.textEncoding.ReaderQuotas); 351this.ReaderQuotas = text.ReaderQuotas;
System\ServiceModel\WSDualHttpBinding.cs (3)
139get { return textEncoding.ReaderQuotas; } 144value.CopyTo(textEncoding.ReaderQuotas); 250this.ReaderQuotas = text.ReaderQuotas;
System\ServiceModel\WSHttpBindingBase.cs (3)
125get { return textEncoding.ReaderQuotas; } 130value.CopyTo(textEncoding.ReaderQuotas); 239this.ReaderQuotas = text.ReaderQuotas;
System\ServiceModel\WSMessageEncoding.cs (1)
26textEncoding.ReaderQuotas.CopyTo(mtomEncoding.ReaderQuotas);
System.ServiceModel.Channels (3)
System\ServiceModel\UdpBinding.cs (3)
57this.ReaderQuotas = encoding.ReaderQuotas; 136get { return this.textEncoding.ReaderQuotas; } 143value.CopyTo(this.textEncoding.ReaderQuotas);