2 writes to readerQuotas
System.ServiceModel.Web (2)
System\ServiceModel\Channels\WebMessageEncodingBindingElement.cs (2)
37this.readerQuotas = new XmlDictionaryReaderQuotas(); 47this.readerQuotas = new XmlDictionaryReaderQuotas();
15 references to readerQuotas
System.ServiceModel.Web (15)
System\ServiceModel\Channels\WebMessageEncodingBindingElement.cs (15)
38EncoderDefaults.ReaderQuotas.CopyTo(this.readerQuotas); 48elementToBeCloned.readerQuotas.CopyTo(this.readerQuotas); 129return this.readerQuotas; 190return (T)(object) this.readerQuotas; 207readerQuotasInstance.SetProperty(AdministrationStrings.MaxArrayLength, this.readerQuotas.MaxArrayLength); 208readerQuotasInstance.SetProperty(AdministrationStrings.MaxBytesPerRead, this.readerQuotas.MaxBytesPerRead); 209readerQuotasInstance.SetProperty(AdministrationStrings.MaxDepth, this.readerQuotas.MaxDepth); 210readerQuotasInstance.SetProperty(AdministrationStrings.MaxNameTableCharCount, this.readerQuotas.MaxNameTableCharCount); 211readerQuotasInstance.SetProperty(AdministrationStrings.MaxStringContentLength, this.readerQuotas.MaxStringContentLength); 262if (this.readerQuotas.MaxStringContentLength != other.ReaderQuotas.MaxStringContentLength) 266if (this.readerQuotas.MaxArrayLength != other.ReaderQuotas.MaxArrayLength) 270if (this.readerQuotas.MaxBytesPerRead != other.ReaderQuotas.MaxBytesPerRead) 274if (this.readerQuotas.MaxDepth != other.ReaderQuotas.MaxDepth) 278if (this.readerQuotas.MaxNameTableCharCount != other.ReaderQuotas.MaxNameTableCharCount)