8 writes to MaxBytesPerRead
System.IdentityModel.Selectors (1)
infocard\client\System\IdentityModel\Selectors\CardSpaceSelector.cs (1)
88DefaultQuotas.MaxBytesPerRead = 4096; // max start element tag
System.ServiceModel (4)
System\ServiceModel\Channels\EncoderHelpers.cs (1)
33bufferedReadQuotas.MaxBytesPerRead = EncoderDefaults.BufferedReadDefaultMaxBytesPerRead;
System\ServiceModel\ComIntegration\ComPlusDiagnosticTraceSchemas.cs (2)
42quota.MaxBytesPerRead = 4096; 835quota.MaxBytesPerRead = 4096;
System\ServiceModel\Configuration\XmlDictionaryReaderQuotasElement.cs (1)
78readerQuotas.MaxBytesPerRead = this.MaxBytesPerRead;
System.ServiceModel.Channels (1)
System\ServiceModel\Configuration\ByteStreamMessageEncodingElement.cs (1)
86readerQuotas.MaxBytesPerRead = oldQuotas.MaxBytesPerRead;
System.ServiceModel.Web (2)
System\ServiceModel\Configuration\WebHttpBindingElement.cs (1)
299webBindingReaderQuotas.MaxBytesPerRead = elementReaderQuotas.MaxBytesPerRead;
System\ServiceModel\Configuration\WebMessageEncodingElement.cs (1)
160readerQuotas.MaxBytesPerRead = currentQuotas.MaxBytesPerRead;
25 references to MaxBytesPerRead
System.Runtime.Serialization (4)
System\Runtime\Serialization\Json\XmlJsonReader.cs (1)
1117this.maxBytesPerRead = quotas.MaxBytesPerRead;
System\Xml\XmlBinaryReader.cs (1)
77this.maxBytesPerRead = quotas.MaxBytesPerRead;
System\Xml\XmlMtomReader.cs (1)
1101this.chunkSize = Math.Min(reader.Quotas.MaxBytesPerRead, chunkSize);
System\Xml\XmlUTF8TextReader.cs (1)
334this.maxBytesPerRead = quotas.MaxBytesPerRead;
System.ServiceModel (12)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (1)
546readerQuotasInstance.SetProperty(AdministrationStrings.MaxBytesPerRead, readerQuotas.MaxBytesPerRead);
System\ServiceModel\Channels\BinaryMessageEncodingBindingElement.cs (2)
293if (this.readerQuotas.MaxBytesPerRead != binary.ReaderQuotas.MaxBytesPerRead)
System\ServiceModel\Channels\MtomMessageEncodingBindingElement.cs (2)
255if (this.readerQuotas.MaxBytesPerRead != mtom.ReaderQuotas.MaxBytesPerRead)
System\ServiceModel\Channels\PeerNodeImplementation.cs (2)
1745else if (existingOne.MaxBytesPerRead != newOne.MaxBytesPerRead)
System\ServiceModel\Channels\TextMessageEncodingBindingElement.cs (2)
227if (this.readerQuotas.MaxBytesPerRead != text.ReaderQuotas.MaxBytesPerRead)
System\ServiceModel\Configuration\XmlDictionaryReaderQuotasElement.cs (2)
104if (readerQuotas.MaxBytesPerRead != EncoderDefaults.MaxBytesPerRead) 106SetPropertyValueIfNotDefaultValue(ConfigurationStrings.MaxBytesPerRead, readerQuotas.MaxBytesPerRead);
System\ServiceModel\NetMsmqBinding.cs (1)
124if (this.ReaderQuotas.MaxBytesPerRead != EncoderDefaults.MaxBytesPerRead)
System.ServiceModel.Channels (3)
System\ServiceModel\Configuration\ByteStreamMessageEncodingElement.cs (3)
116if (readerQuotas.MaxBytesPerRead != EncoderDefaults.MaxBytesPerRead && readerQuotas.MaxBytesPerRead != 0) 118thisQuotas.MaxBytesPerRead = readerQuotas.MaxBytesPerRead;
System.ServiceModel.Web (6)
System\ServiceModel\Channels\WebMessageEncodingBindingElement.cs (3)
208readerQuotasInstance.SetProperty(AdministrationStrings.MaxBytesPerRead, this.readerQuotas.MaxBytesPerRead); 270if (this.readerQuotas.MaxBytesPerRead != other.ReaderQuotas.MaxBytesPerRead)
System\ServiceModel\Configuration\WebHttpBindingElement.cs (3)
225if (readerQuotas.MaxBytesPerRead != EncoderDefaults.MaxBytesPerRead && readerQuotas.MaxBytesPerRead != 0) 227thisQuotas.MaxBytesPerRead = readerQuotas.MaxBytesPerRead;